I'm pretty new to HTML and I can't seem to get this form to work. I want a textbox that wraps the text when it reaches the edge but I'm not sure how to make that happen. When I enter text in the box it just continues on one line and a horizontal scroll bar appears...
<tr>
<td class="left" valign="top" width="150">
<label>Your Message: <span class="required">*</span></label>
</td>
<td class="right"> <textarea cols="30"
rows="5" name="q6_YourMessage" class="text"
id="q6" onblur="validate(this,'Required')" wrap="on"></textarea></td>
</tr>
Please Help! Thank you!
Thank you for the suggestion, however I don't appreciate the smugness behind your response.
wrap="soft" didn't solve the problem.
<tr>
<td class="left" valign="top" width="150">
<label>Your Message: <span class="required">*</span></label>
</td>
<td class="right"> <textarea cols="30"
rows="5" name="q6_YourMessage" class="text"
id="q6" onblur="validate(this,'Required')" wrap="on"></textarea></td>
</tr>
Please Help! Thank you!
Thank you for the suggestion, however I don't appreciate the smugness behind your response.
wrap="soft" didn't solve the problem.