Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $('#msginput').focus(function()
  2. {
  3.     document.getElementById('msginput').focused = true;
  4. });
  5.  
  6. $('#msginput').blur(function()
  7. {
  8.     document.getElementById('msginput').focused = false;
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement