Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Simple question which I can't find the answer to: how can I use JavaScript (or jQuery) to deselect any text which may be selected on a webpage? E.G. user clicks and drags to highlight a bit of text -- I want to have a function deselectAll() which clears this selection. How should I go about writing it?

Thanks for the help.

share|improve this question

3 Answers

up vote 28 down vote accepted
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();
}

Credit to Mr. Y.

share|improve this answer
This works beautifully. Cheers! – man1 Jul 5 '10 at 2:29
Thanks. I'm glad it solved your issue. :) – Gert Grenander Jul 5 '10 at 2:49
3  
This assumes that the existence of document.selection implies the existence of an empty() method of it. You've tested for the method in every other case, so you might as well test for empty in the final case too. – Tim Down Jul 5 '10 at 10:20
Working thanks. ;) – Somebody Aug 28 '11 at 15:46
Thank you great English people. I can't find it in Russian for 1 hour, until i try search in English! – Vova Popov Mar 10 '12 at 21:11

Best to test the features you want directly:

var sel = window.getSelection ? window.getSelection() : document.selection;
if (sel) {
    if (sel.removeAllRanges) {
        sel.removeAllRanges();
    } else if (sel.empty) {
        sel.empty();
    }
}
share|improve this answer

window.getSelection() lets you access the selected text, from there, there's a few things you can do to manipulate it..

Read More: Developer Mozilla DOM Selection

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.