I'm working within a child row. I've created a text box via a textarea command within jQuery (seen below):
<td style="width: 370px;">
<textarea rows = "5" style="width: 300px;"></textarea>
Here's the issue: I can't figure out how to disable horizontal scrolling and make it drop down to the next line when I reach the end of the text box. So how do I disable horizontal scrolling? I want vertical scrolling to be enabled so that the textarea doesn't get bigger, because it can't change size.
Thanks for your help.