Web Hosting Talk







View Full Version : javascript form field - clear when you click


aqi32
02-17-2004, 03:16 PM
hey guys,

what's the javascript that clears a form field of any default message when you click in it?

cheers

aqi

DWS
02-17-2004, 05:31 PM
Here ya go.

<input type="text" size="10" name="username" onfocus="this.value=''" value="username" />
<input type="password" size="10" name="password" onfocus="this.value=''" value="password" />