Skip to content

Instantly share code, notes, and snippets.

@MSerj
Created October 30, 2017 19:22
Show Gist options
  • Save MSerj/d0a6fd312db400f0c4b1e5ac957e3764 to your computer and use it in GitHub Desktop.
Save MSerj/d0a6fd312db400f0c4b1e5ac957e3764 to your computer and use it in GitHub Desktop.
hide placeholder on focus and return it on blur
$('input, textarea').focus(function(){
$(this).data('placeholder',$(this).attr('placeholder'));
$(this).attr('placeholder','');
});
$('input, textarea').blur(function(){
$(this).attr('placeholder',$(this).data('placeholder'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment