vote up 2 vote down star

The Problem

I am working on an in-browser editor within a textarea. I have started looking for some information on dealing with textarea selection and found this jquery plugin that does some simple manipulation. However, It doesn't explain what's going on.

The Question

Where can I find a good resource on Textarea Selection in Javascript, preferably with a description of both pre-DOM3 and post-DOM30 scenarios?

[edit]

In a great answer below from Borgar, I have found several different places to start with contentEditable, selectionStart, and selectionEnd. I'll be looking into these things and posting any good tutorials I might find.

flag

70% accept rate

1 Answer

vote up 3 vote down check

Start with PPK's introduction to ranges. Mozilla developer connection has info on W3C selections. Microsoft have their system documented on MSDN. Some more tricks can be found in the answers here.

In addition to incompatible interfaces you'll be happy to know that there is extra bizarreness going on with textarea nodes. If I remember correctly they behave as any other nodes when you select them in IE, but in other browsers they have an independent selection range which is exposed via the .selectionEnd and .selectionStart properties on the node.

Additionally, you should really take a look at .contentEdiable as a means to edit things live. From the release of Firefox3, this is now supported by all browsers.

link|flag
Thanks Borgar! I've never heard of contentEditable before. I will be getting familiar with it post haste! – brad Jan 5 '09 at 19:28

Your Answer

Get an OpenID
or

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