Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2.     $("input").focus(function () {
  3.          $(this).next("span").css('display','inline').show();
  4.          $('tr.me').addClass('highlight');
  5.     });
  6.     $("input").blur(function () {
  7.          $(this).next("span").css('display','inline').hide();
  8.          $('tr').removeClass('highlight');
  9.     });
  10. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement