Place holder not working in textarea
I am using this code to display placeholder:
<input type="email" name="email" value="Email"
onfocus="if(this.value=='Email')this.value='';"
onblur="if(this.value=='')this.value='Email';">
<textarea onfocus="if(this.value=='Message')this.value='';"
onblur="if(this.value=='')this.value='Message';"> </textarea>
Placeholder is displaying in input field, but not displaying in textarea.
Here is my page link where I am using this code.
http://realinvestors.businesscatalyst.com/contact.html
No comments:
Post a Comment