Hi,
Is there an easy way of removing auto-suggest from the quick search?
Thanks
Is there an easy way of removing auto-suggest from the quick search?
Thanks
AddEvent(window,"load",AddAutoSuggest);
// AddEvent(window,"load",AddAutoSuggest);
if (document.forms[nIndex] && document.forms[nIndex].SS)
if (document.forms[nIndex] && document.forms[nIndex].SS && (document.forms[nIndex].SS.getAttribute('class').indexOf('noauto') == -1))
<input type="text" name="SS" size="18" value="Quick Search" onfocus="this.value='';" class="quick-search-text" />
<input type="text" name="SS" size="18" value="Quick Search" onfocus="this.value='';" class="quick-search-text noauto" />
Comment