Skip to content

Instantly share code, notes, and snippets.

@dtex
Created November 29, 2012 23:30
Show Gist options
  • Save dtex/4172640 to your computer and use it in GitHub Desktop.
Save dtex/4172640 to your computer and use it in GitHub Desktop.
HTML5 Form placeholder shim
// Uses Modernizr and jQuery
if(!Modernizr.input.placeholder) {
jQuery("input[placeholder]").focus(
function () { if (this.value == jQuery(this.attr('placeholder')) this.value = ''; }
).blur(
function () { if (this.value == '') this.value = jQuery(this.attr('placeholder')); }
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment