how can i keep the search box dark gray while i'm writing a search term ? (at the moment not so many words in the DB, try words starting with letter T or L or S) http://www.dbwebserver.com/semeraro/01/index.html thank you for your help dario .
ok fixed with this <input id="search" type="text" onblur="this.parentNode.parentNode.className = 'ricerca';this.value=!this.value?'Cerca prodotto':this.value;" onfocus="this.select();this.parentNode.parentNode.className = 'ricercahover';" onclick="this.value='';" onkeyup="ajax_showOptions(this,'getProdottoByLetters',event)" value="cerca prodotto" size="20" name="search"/> thank you anyway .