Skip to content

Instantly share code, notes, and snippets.

@zackkitzmiller
Created June 7, 2010 18:36
Show Gist options
  • Save zackkitzmiller/429000 to your computer and use it in GitHub Desktop.
Save zackkitzmiller/429000 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
var placeholder_text = 'Email Address';
$('#input_field').focus(function(){
if ($(this).val() == placeholder_text) {
$(this).val('');
}
}).blur(function(){
if ($(this).val() == '') {
$(this).val(placeholder_text);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment