Created
August 5, 2016 01:46
-
-
Save RavenZZ/f0ce802249056fb55d9effeb8cf0b6c5 to your computer and use it in GitHub Desktop.
Clear Text Selection with JavaScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Это не работает в Vue, Chrome. при попытке убрать выделение текста в input text readonly.
А, и перед стиранием выделения вылетает alert(); Сообщающий удачное ли выделение.
Думаю, это из-за клика по алерту. Фокус теряется.