this part clears the data if there is the defualt text in it andCode:onfocus="if (this.value=='Enter your text here.') {this.value='' }"
this part returns the default text if there was nothing entered in the textarea. Like I said in my previous post, you could put it in the head of the html but I'm not sure how you would do it.Code:onblur="if (this.value=='') {this.value='Enter your text here.'}"
