vote up 0 vote down star

I have a page that users are able to add xml markup into a text area input. I'd like after they enter it that it be color-coded and formatted as xml would look in an IDE such as Visual Studio. Anybody know of a script or tool that would allow for this within a client-side browser?

flag

65% accept rate

2 Answers

vote up 4 vote down check

Take a look at CodeMirror, a syntax-highlighting editor in Javascript for browsers. This is an example for XML editing.

link|flag
vote up 2 vote down

Short answer: you can't.

Not in an TEXTAREA, as the one here in SO.

The example in SO is very good, as it has a TEXTAREA where we type the text, and a DIV box below where you can see what you type formatted.

You could also go through the contentEditable = "true", but it's a real pain to do it properly...

link|flag

Your Answer

Get an OpenID
or

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