Guest User

Untitled

a guest
Jan 20th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. $(document).ready(function () {
  2. $('input,textarea').focus(function(){
  3. $(this).data('placeholder',$(this).attr('placeholder'))
  4. $(this).attr('placeholder','');
  5. });
  6. $('input,textarea').blur(function(){
  7. $(this).attr('placeholder',$(this).data('placeholder'));
  8. });
  9. });
Add Comment
Please, Sign In to add comment