How can I make a text box that allows users to enter tabs, and does not send the user to the next element when the tab button is pressed?
|
feedback
|
|
You only need to check for tabs | |||
|
feedback
|
|
| |||||||||||
feedback
|
<textarea onkeydown="return catchTab(this, event);"> JS code:
| |||
|
feedback
|
|
You can use JavaScript to catch the tab keypress event and replace it with spaces (I'm not sure about inserting tabs into a textarea). E: This page looks good. | ||||
|
feedback
|
|
onkeypress, onkeyup or onkeydown check the key that was pressed and if it is a tab then append \t to the textbox and return false so that focus remains on the textbox you will most likely have to use textranges so that tabs can be inserted anywhere not at the end of the text that's the basic idea for the rest google is your friend :) | |||
|
feedback
|
|
Do NOT try to capture the onkeypress event for the 'TAB' key in IE (it doesn't work) (bug 249) Try onkeydown or onkeyup instead. | |||
|
feedback
|