Skip to content

Instantly share code, notes, and snippets.

@oguzhanaslan
Created May 11, 2014 15:39
Show Gist options
  • Save oguzhanaslan/6c35d7dd6cf58712232a to your computer and use it in GitHub Desktop.
Save oguzhanaslan/6c35d7dd6cf58712232a to your computer and use it in GitHub Desktop.
Clear form fields - focus
$('textarea, input:text').bind('focus click', function(){
if (this.value == this.defaultValue) {
this.value = '';
}
}).bind('blur', function(){
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