This is probably the simplest thing in the world to somebody out there, but is there a way to make a textarea that doesn't wordwrap unless the user hits "enter" or "return"? Thanks.
This is probably the simplest thing in the world to somebody out there, but is there a way to make a textarea that doesn't wordwrap unless the user hits "enter" or "return"? Thanks.
If you don't want to wrap your text inside a text area you can use something like the following
In other words make the "wrap" attribute of <textarea> tag to "off"Code:<textarea name="test" cols="35" rows="10" wrap="off" dir="ltr"></textarea>
regards
Bookmarks