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
- To be Able to undo the inserted node, using browser's undo. Somehow, browser ignores above actions.
- 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.