Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $highlighted=null;
- $(document.body).on("click", function(e) {
- if(e.target && e.target.className==="name") {
- e=$(e.target).prev("input");
- $("input.talk_username[value!="+$highlighted+"]").parent().parent().css("opacity", "1");
- if($highlighted!==e.val()) {
- $highlighted=e.val();
- $("input.talk_username[value!="+$highlighted+"]").parent().parent().css("opacity", "0.25");
- }
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment