I'm trying to position the cursor to after a given element in a contenteditable. I can see how to do this with nodes that are <p> tags, but it doesn't work for <img> tags.
My code reads:
function setCaretAtStartEnd( elem, atEnd ){
const sel = document.getSelection();
var node = elem.firstChild;
if( sel.rangeCount ){
if (atEnd) sel.getRangeAt(0).setEnd(node, node.length);
else sel.getRangeAt(0).setEnd(node, 0);
}
}
A running version can be found on https://jsfiddle.net/Abeeee/f1ra72wu/ it works for One and Three but not Two (likely due to Two being a tag).
So how do I adjust my code to make the "Two" buttons work?
Thanks Abe
I've modified the fiddle, tell me if it fit what you want to do, I've wrapped the image inside a div with id
two
qnd removed it from theimg
elemet so the first button works, I also added a function to position the cursor after the image.