I am trying to remove selection inside a contenteditable field. The code I have is this:
Text
I found this on SO, and should be what you are looking for:
if (window.getSelection) {
if (window.getSelection().empty) { // Chrome
window.getSelection().empty();
} else if (window.getSelection().removeAllRanges) { // Firefox
window.getSelection().removeAllRanges();
}
} else if (document.selection) { // IE?
document.selection.empty();
}
Working fiddle