Skip to content

Instantly share code, notes, and snippets.

@RavenZZ
Created August 5, 2016 01:46
Show Gist options
  • Save RavenZZ/f0ce802249056fb55d9effeb8cf0b6c5 to your computer and use it in GitHub Desktop.
Save RavenZZ/f0ce802249056fb55d9effeb8cf0b6c5 to your computer and use it in GitHub Desktop.
Clear Text Selection with JavaScript
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();
}
@ATLANT-Z
Copy link

ATLANT-Z commented Aug 3, 2021

Это не работает в Vue, Chrome. при попытке убрать выделение текста в input text readonly.
А, и перед стиранием выделения вылетает alert(); Сообщающий удачное ли выделение.
Думаю, это из-за клика по алерту. Фокус теряется.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment