Skip to content

Instantly share code, notes, and snippets.

@dsebao
Created September 13, 2013 13:26
Show Gist options
  • Save dsebao/6550701 to your computer and use it in GitHub Desktop.
Save dsebao/6550701 to your computer and use it in GitHub Desktop.
Input placeholder text fix for IE
$(document).ready(){
$('[placeholder]').focus(function() {
var input = $(this);
if(input.val() == input.attr('placeholder')) {
input.val('');
input.removeClass('placeholder');
}
}).blur(function() {
var input = $(this);
if (input.val() == '' || input.val() == input.attr('placeholder')) {
input.addClass('placeholder');
input.val(input.attr('placeholder'));
}
}).blur();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment