Use tabs in textarea field

Is it possible to use tabs (indents) in textarea using javascript. When the tab button is pressed, the next form element focuses. But I need to backtrack from text in textarea.

I am currently working on a project and any code with javascript or jquery will help me.

+3
source share
3 answers

The best plugin I've seen for this is the tabs in the Textarea plugin . You can try the demo on your page .

The setup is quite simple, as it has a simple effect:

$("textarea").tabby();

, , shift + tab, . , ... , , . TextRange - , , , IMO.

+5

- :

<input onkeypress="if(event.keyCode == 9) { this.value += '    '; return false; }">

, keyCode 9 ( Tab), false. .

Tab, .

+1

: . , ; !

0
source

Source: https://habr.com/ru/post/1753053/


All Articles