0
How to insert <textarea> inside <input> in a <form> ?
I've been trying to do this and the output would be two holders of text the one from the input and the other from the textarea.. if anyone knows how i could fix this please let me know and thanks in advance.
2 Respuestas
+ 2
Syrine Ayedi
textarea is already a input box with multiline statement. Then why you need this?
<input type = "text" name = "name" value = "" />
<textarea rows = "10" cols = "10"></textarea>
+ 2
A͢J thank you sm i forgot about the fact that it's already an input box 😅