Hello guys. Well i have a question about making a text disappear from an input text .. such as search boxes sometimes. Ex: digg.com In the right top in the box is written search digg... when you click it, it will disappear. How this was made? I really appreciate your help
simple <input name="something" onfocus="this.value=''" value="search this"> Code (markup): cheers. Arief
Arief is correct,except the closing tag. <input name="something" onfocus="this.value=''" value="search this" />