Skip to content

Instantly share code, notes, and snippets.

@ninjasort
Last active January 2, 2016 23:50
Show Gist options
  • Save ninjasort/7f67a9e3cf31ded52d75 to your computer and use it in GitHub Desktop.
Save ninjasort/7f67a9e3cf31ded52d75 to your computer and use it in GitHub Desktop.
IE placeholder
// http://kamikazemusic.com/quick-tips/jquery-html5-placeholder-fix/
function fixIEPlaceholders() {
if (!Modernizr.input.placeholder) {
$("input").each(function() {
if($(this).val() == "" && $(this).attr("placeholder") !== ""){
$(this).val($(this).attr("placeholder"));
$(this).focus(function(){
if($(this).val() == $(this).attr("placeholder")) $(this).val("");
});
$(this).blur(function(){
if($(this).val()=="") $(this).val($(this).attr("placeholder"));
});
}
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment