Skip to content

Instantly share code, notes, and snippets.

View soundslikeinfo's full-sized avatar
🥳
Just upgraded to GIt Pro

Sounds Like Info soundslikeinfo

🥳
Just upgraded to GIt Pro
  • Phoenix, Az.
  • 23:17 (UTC -07:00)
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);