By default tab symbol in textarea equals to the width of 8 spaces. Is it possible to change this value to 4 for example?

I am mostly interested in using this in Chrome browser.

link|improve this question

75% accept rate
feedback

2 Answers

up vote 2 down vote accepted

The only way you could achieve this is to capture the keyboard onkeyup event, check if a tab was pressed, insert 4 spaces and stop/cancel the event at that point.

link|improve this answer
1  
+1 That seems to be the only possibility. – Sarfraz Jul 31 '10 at 17:28
Pressing tab doesn't insert a tab, it moves to the next form field. For this reason it's unusual to get a tab in a textarea at all. Typically it only happens on copy-and-paste from another application. One could check onpaste (or, more reliably, poll) and sniff for tab characters in the field, replacing them with spaces. – bobince Jul 31 '10 at 19:16
This does not work as well for tabs which are not at the start of line, that is, midline – Umbrella Feb 19 at 18:35
@Downvoter - care to comment? – Oded Apr 3 at 8:02
feedback

More recently you can also use the following css for Firefox 4.0+ and Opera 10.6+

textarea, pre { -moz-tab-size:4; -o-tab-size:4; -webkit-tab-size:4; tab-size:4; }

link|improve this answer
+1 This does work in moz, I am still interested in a Chrome CSS solution. – Umbrella Feb 19 at 18:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.