I am trying to insert some text content at the cursor position in my contentEditable iframe for the following content(<span style='fontweight:bold'>ab</span>) ab... Here i place the cursor after ab and if if i execute the following command document.execCommand('insertHTML',false,"c") The resulting html is as follows <span style='fontweight:bold'>ab</span>c

What i required is <span style='fontweight:bold'>abc</span>

Note: This issue is only in Firefox, In chrome and safari i get the expected behavior which is needed for me.

Please suggest a way to get this behavior in FF

link|improve this question

40% accept rate
feedback

1 Answer

I work on HTML editing support in Firefox. Can you please add a link to the web page which demonstrates the problem, so that I can see if it's a bug in Firefox, and also suggest to you how to fix it?

Thanks!

link|improve this answer
Here is a quick example that demonstrates this: jsfiddle.net/VhwrU – Mike Ivanov Jul 18 '11 at 23:11
feedback

Your Answer

 
or
required, but never shown

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