Does anyone know the html and javacript code to have a textarea form field, have a message in it, and when the user clicks on the textarea to type the text will go away.
Printable View
Does anyone know the html and javacript code to have a textarea form field, have a message in it, and when the user clicks on the textarea to type the text will go away.
Here's what I have on my site:
<textarea name="comments" class="text" cols="30" rows="7" tabindex="4" onFocus="if (this.value == '..comments..') this.value = ''" onBlur="if (this.value == '') this.value='..comments..'" wrap="virtual">..comments..</textarea>
You can take out tabindex and class of course.