On Chris Coyer's site he uses a nice little search box. I am curious to know how you get the text in the search box to disappear and reappear when you click out of the box.
Thanks to a helpful person on this forum I use the following to have the text disappear when I click in the box:
<input type="text" value="Search" onfocus="if (this.value=='Search') this.value='';"/>
Also, in Safari there is a nasty border around the input field when I click inside. What is the code for getting rid of that?
Thanks!