If you can use placeholder="visible text", why would one need to have something within the <textarea>
tags especially when the user has to manually delete this text? Is there any difference between the 2 code snippets below other than what I mentioned?
<textarea name="textarea" rows="10" cols="50">
Write something here</textarea>
versus
<textarea name="textarea" rows="10" cols="50"
placeholder="Write something here">
</textarea>
The first code snippet is from: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea
I saw this question[ Html placeholder text in a textarea form ] as related when typing this question but I couldn't find my answer here.