Skip to content

Instantly share code, notes, and snippets.

@jjjjeeffff
Created January 24, 2014 02:24
Show Gist options
  • Save jjjjeeffff/8591003 to your computer and use it in GitHub Desktop.
Save jjjjeeffff/8591003 to your computer and use it in GitHub Desktop.
$('input:text, textarea').each(function(){
var $this = $(this);
$this.data('placeholder', $this.attr('placeholder'))
.focus(function(){$this.removeAttr('placeholder');})
.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