$(document).ready(function(){ $('form.search input.form-text').focus(function(){ if (this.value == this.defaultValue) { this.value = ''; } }).blur(function(){ if (this.value == '') { this.value = this.defaultValue; } }); });