Fooksie

em.hln

Mar 15th, 2016
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $highlighted=null;
  2. $(document.body).on("click", function(e) {
  3.     if(e.target && e.target.className==="name") {
  4.         e=$(e.target).prev("input");
  5.         $("input.talk_username[value!="+$highlighted+"]").parent().parent().css("opacity", "1");
  6.         if($highlighted!==e.val()) {
  7.             $highlighted=e.val();
  8.             $("input.talk_username[value!="+$highlighted+"]").parent().parent().css("opacity", "0.25");
  9.             }
  10.         }
  11.     });
Advertisement
Add Comment
Please, Sign In to add comment