I have an eventHandler that is trigered every time a node is inserted in a contenteditable div. This eventHandler replaces a newly inserted div node with a p node.
The problem is placing the cursor after the replacement. Basically the cursor isn't placed properly, that is, the cursor disappears while it was expected to be placed in the new created p node. Strangely the content editable div still has focus and dumping the window.selection object shows the range correctly set.
The only way I could workaround this issue was with a dirty fix using setTimeout.
Q. Why does it work when placeCursor() is called with setTimeout but not without it?
Relevant Code:
obj.addEventListener("DOMNodeInserted", onNodeInsert, false);
function onNodeInsert(e) {
var range = document.createRange(),
sel = window.getSelection(),
newNode = e.target,
tagName = newNode.tagName.toLowerCase(),
lnbrNode = document.createElement('br'),
pNode = document.createElement('p');
if (tagName === 'div' && newNode.getAttribute("id") === null) {
// First we remove the event listener so that it doesn't get triggered again
this.removeEventListener('DOMNodeInserted', onNodeInsert, false);
// Creates a p node and removes the div
newNode.parentNode.replaceChild(pNode, newNode);
pNode.appendChild(lnbrNode);
// Places the caret where it belongs
var placeCursor = function () {
range.setStart(pNode, 0);
sel.removeAllRanges();
sel.addRange(range);
}
//placeCursor(); // DOES NOT WORK (cursor disappears)
setTimeout(placeCursor,1); // WORKS
//We can restore the event listener now
this.addEventListener("DOMNodeInserted", onNodeInsert, false);
}
}
for more context see this post