JSFiddle - React, Tailwind, and code Playground

HTML

<div contenteditable="true" id="editor">A sentence <div>with <span class='foo'><b>html</b>&nbsp;content</span>!</div></div>

JavaScript

var editor = document.getElementById("editor");

function setSelection(parentDiv, start, end) {
    // how can I set the selection?
}

setSelection(editor, 16, 21); // this should select "with"
setSelection(editor, 56, 63); // this should select "content"