/ Published in: Other
URL: http://bassistance.de/2007/01/23/unobtrusive-clear-searchfield-on-focus/
Expand |
Embed | Plain Text
$("#searchText").focus(function() { if( this.value == this.defaultValue ) { this.value = ""; } }).blur(function() { if( !this.value.length ) { this.value = this.defaultValue; } });
You need to login to post a comment.
