Javascript Textarea Tab Override
https://mreschke.com/24/javascript-textarea-tab-override
Override tabs in a HTML textarea box. The only problem with this script, is that if you are in a large textarea, where there are scroll bars, when you hit tab, it scrolls to the top, try it, it really sucks! > FIX: I fixed this scroll behavior, update this topic to reflect the changes > Also added other keys, like shift http:blog.riait.co.uk/2007/11/04/tab-aware-textarea/ function TabAwareTextArea( o ) { this._o = o; this._isTabLast = false; for gecko: this._restoreFocusWithCaret = -1; this._las...