My textarea has a value, but it is not displayed in the textarea, which is working in my input field...
<textarea value="This text is not visible"></textarea>
<input value="This text is visible">
My textarea has a value, but it is not displayed in the textarea, which is working in my input field...
<textarea value="This text is not visible"></textarea>
<input value="This text is visible">
Textarea doesn't have value
attribute. Put the text between opening and closing tags.
note : Don't forgot to add name attribute .
It should be like this
<textarea name="textarea_field" placeholder="Text enter here">This text is visible</textarea>