Hi, I'm trying to make a search box (just a normal Textfield) With the word "Search" typed in standart when you visit the page. I know you do that with value="Search" but now I want to make it dissapear when I click on the textfield. Any simple fix for this? Jelle
Do something like this: <input type="text" size="15" value="Search" name="email" id="email" onclick="if (this.value=='Search') this.value='';"/>
<input class="text" name="blabla" value="Search" onfocus="if(this.value=='Search')this.value='';" onblur="if(this.value=='')this.value='Search';"); /> </> HTML: something like this ^^