Skip to content

Instantly share code, notes, and snippets.

View ales's full-sized avatar

Ales Novotny ales

View GitHub Profile
$('[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.addClass('placeholder');