Skip to content

Instantly share code, notes, and snippets.

@eric
Created December 9, 2008 01:58
Show Gist options
  • Save eric/33721 to your computer and use it in GitHub Desktop.
Save eric/33721 to your computer and use it in GitHub Desktop.
jQuery(function($){
$(".default_text")
.focus(function(event){
if(this.value == this.defaultValue) {
this.value = "";
}
})
.blur(function(event){
if(this.value == "") {
this.value = this.defaultValue;
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment