0
So I have a textarea like this:
<textarea id="mensagem" name="mensagem" type="text" style="width:400px; font-size:16px; height:100px; border-color:lightgray;" placeholder="Um texto qualquer" required> </textarea>
My intention is this: I will be able to type in the textarea, but only complementing the message that will already be inside. You can do it?
Has. Just put a text outside the textarea so that the user knows that this text is fixed and what he is typing is an add-on.
– Sam
When you use this, either by submitting or etc., just concatenate the fixed text to what was typed in the textarea.
– Sam
Difficult feat to be put into practice
– user60252