I have this:
<input type="text" name="From" size="23" value="Type your e-mail here">
What do I need to add to make the text (Type your e-mail here) disappear when you click in the textbox? Thanks a lot!
Actually....to make sure people don't get to it from tab and bypass the "click" event, use this:
<input type="text" name="From" size="23" value="Type your e-mail here" onfocus="this.value='';">
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.