Log in

View Full Version : Input box to automatically clear itself when clicked


Sychev_S
04-18-2007, 01:53 AM
Any idea on how to do get input box to clear itself when clicked?

calorie
04-18-2007, 03:18 AM
<!-- change whatever1 and whatever2 to whatever you want -->

<input type="text" name="whatever1" value="whatever2" onfocus="if (this.value == 'whatever2') this.value = '';" onblur="if (this.value == '') this.value = 'whatever2';" />

Sychev_S
04-18-2007, 03:27 AM
thank you!