Skip to content

Instantly share code, notes, and snippets.

@aranajhonny
Created November 28, 2016 23:09
Show Gist options
  • Save aranajhonny/a46f3d451837161173d406197c056a04 to your computer and use it in GitHub Desktop.
Save aranajhonny/a46f3d451837161173d406197c056a04 to your computer and use it in GitHub Desktop.
$('[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