Is it possible to display bold and non-bold text in a textarea?

html, javascript

Solution

For these cases, avoid use something pure text area, use wysiwyg html editor.

Here are some ideas for you:

ckeditor

niceditor

Problem

I don't want this: ``` <textarea>The <b>color</b> is black.</textarea> ``` Instead of the `<b>` and `</b>` i want the text "color" to be shown in bold. Is this possible?

Original source

Related problems