I am working on a contenteditable div to make a simple RichText-Editor. One of the requirement I have is to be able insert html chunk at cursor postion on a button event.

I was able to get that part working fine by using range, selection, range.insertNode(nodeHTML) or range.pasteHTML(nodeHTML) based on browser. But I couldn't get two things, which ideally I would like to have

  1. To be Able to undo the inserted node, using browser's undo. Somehow, browser ignores above actions.
  2. To move the cursor at the end of inserted node. So that user can start writing after

I know I can use something out of many editors available, which does this very well, but If I get this I would not have to. Any help or even suggestions are welcome.

Thanks.

link|improve this question

This might help you: code.google.com/p/rangy - Also, take a look at the demos. – techfoobar Dec 17 '11 at 7:21
Unfortunately Rangy has no undo functionality. – Tim Down Dec 17 '11 at 10:52
feedback

1 Answer

up vote 2 down vote accepted

Unfortunately not. Programmatic DOM mutations other than those triggered by document.execCommand() do not go on the browser's built-in undo stack. There is a spec in the works for an undo stack available to web developers but that's some way off being available in browsers.

You could use document.execCommand("InsertHTML", false, "<b>Some html</b>"); but this is not supported in IE.

link|improve this answer
I guess IE users have to do without undo then. Using, insertHTML is the solution to both of my issues. Thanks. And btw, your rangy is impressive. – simplyharsh Dec 17 '11 at 11:14
feedback

Your Answer

 
or
required, but never shown

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