I have a series of paragraphs and I want to change the background color of some text selected. For example:
<p>The quick brown</p>
<p>fox jumps over</p>
<p>the lazy dog</p>
The user selected the text range from "brown" to "lazy" and clicked on change color button. What I want to do is to do modifications on the selected text such as change color, size etc.
` so it's going to be very complicated to do this. Imagine if the user selects the _The quick brown fox_, how would you put a `span` in there between two `
`-s? [Example](http://jsfiddle.net/fSnTX/1)
– Vucko Jun 20 '13 at 09:55