Is there a way to create a textarea that doesn't have a scrollbar but still allows scrolling behavior? I want the upper lines of text to disappear as the user continues typing.
I was able to achieve this in IE and Chrome by using overflow:hidden, but when testing in Firefox 5 on Windows, I noticed that the textarea did not automatically scroll and new text would drop off the bottom instead of the top.
While overflow:scroll does work, I need a consistent solution across all browsers that hides the scrollbar. Any suggestions or ideas would be greatly appreciated!