jQuery(function($){ // INIT SEARCH BOX EMPTY FUNCTIONALITY $('input[name="q"]').focus(function(){ if(this.value==this.defaultValue){ this.value=""; } }).blur(function(){ if(this.value==''){ this.value=this.defaultValue; } }); });