Skip to content

Instantly share code, notes, and snippets.

View hugojay's full-sized avatar
🇹🇼
Don't Forget 64 in China

宇狗 Hugo hugojay

🇹🇼
Don't Forget 64 in China
View GitHub Profile
// Released under MIT license: http://www.opensource.org/licenses/mit-license.php
$('[placeholder]').focus(function() {
var input = $(this);
if (input.val() == input.attr('placeholder')) {
input.val('');
input.removeClass('placeholder');
}
}).blur(function() {
var input = $(this);