function search(thisForm){ var keywords = thisForm.search_box.value; keywords = escape($.trim(keywords)); var url = ""; if(!(keywords == "" || keywords == " " || keywords == "Enter Keyword or Item Number" || keywords == "Enter Keyword or Item #")){ url = "catalog/search.jsp?N=0&Nty=1&Ntk=AllSearch&Ntx=mode+matchallpartial&Ntt=" + keywords; document.location = "/" + url + ""; } return false; } $(function(){ var defaultSearchText = ''; $(".ac_input").val(defaultSearchText); $(".ac_input").focus(function(){ if ($(this).val() == defaultSearchText){ $(this).val(''); } }); $(".ac_input").blur(function(){ if ($(this).val() == ""){ $(this).val(defaultSearchText); } }); });