I am going to assume this is a bug in IE 11. But it looks like when I have a contenteditable='false'
inside a contenteditable=true
the folloing charater or space becomes part of the "span"
<p contenteditable="true" id="hello">
Hello world!<span contenteditable='false'>Number 42</span>Good Bye world!
</p>
Here is the JsFiddle. As you can see when you move the cursor from left to right the cursor jump from Number to after G as if <span contenteditable='false'>Number 42</span>Good
is encase in <span contenteditable='false'>Number 42G</span>ood
. Does anybody know of a work around for this?