2

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">
peace_love
  • 6,229
  • 11
  • 69
  • 157

2 Answers2

19

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>
JYoThI
  • 11,977
  • 1
  • 11
  • 26
4
<textarea>This text is visible</textarea>
Monika Bozhinova
  • 294
  • 3
  • 16