9

i need to colorize part of the text in textarea. Let's say first line in red, second in blue. How to do this? (jQuery)

Petya petrov
  • 2,153
  • 5
  • 23
  • 35

2 Answers2

8

I'm not sure if it possible with textarea. Instead use div contentEditable.

See similar questions

Rendering HTML inside textarea

How to set background color for some inner text of HTML textarea element?

Community
  • 1
  • 1
ace
  • 6,775
  • 7
  • 38
  • 47
0

You can't easily style the contents of a text area, you can however use a simplified rich text editor to accomplish this.

something like RTE: http://batiste.dosimple.ch/blog/posts/2007-09-11-1/rich-text-editor-jquery.html or CLEditor: http://premiumsoftware.net/cleditor/ would be a good starting point for this.

Don Albrecht
  • 1,222
  • 1
  • 8
  • 12