I have a contenteditable div
, and I want to split a node around a selection. Using execCommand()
, I can toggle “bold” on or off for a selection, so if I have:
<b>ABCDEFGHI</b>
and select DEF
, toggling “bold” gives me
<b>ABC</b>DEF<b>GHI</b>
where the <b>
node has been split into two <b>
nodes with a text node in between.
I want to be able to do the same with other elements not supported by execCommand()
, for example <bdi>
. In other words, if I start with
<bdi>ABCDEFGHI</bdi>
and select DEF
, I want to end up with
<bdi>ABC</bdi>DEF<bdi>GHI</bdi>
I can test if the selection is contained in a surrounding <bdi>
tag using range.commonAncestorContainer()
and if not wrap the range in a <bdi>
tag, but if there is an enclosing <bdi>
node, how can I split it into (a) a well-formed <bdi>
node before the selection, (b) a well-formed selection with no enclosing <bdi>
, and (c) another well-formed <bdi>
node after the selection, and then reassemble them?