Is it possible to change the color of a word in a text box?
4 answers
Most rich text javascript editors use iframe
c designMode='on'
as it gives better cross-browser results:
<iframe ID="rtbox"></iframe>
To make iframe
editable and insertable rich text using Javascript, you can use the following code example:
var rtbox = document.getElementById('rtbox');
var doc = rtbox.document ? rtbox.document : rtbox.contentDocument;
doc.designMode = 'on';
doc.body.innerHTML = 'one <span style="color:red">red</span> word';
+5
a source to share