I'm handling the dblclick event on a span in my web app. A side-effect is that the double click selects text on the page. How can I prevent this selection from happening?

link|improve this question

50% accept rate
feedback

4 Answers

up vote 42 down vote accepted
function clearSelection() {
    if(document.selection && document.selection.empty) {
        document.selection.empty();
    } else if(window.getSelection) {
        var sel = window.getSelection();
        sel.removeAllRanges();
    }
}

You can also apply these styles to the span for all non-IE browsers:

span.no_selection {
    -webkit-user-select: none; // webkit (safari, chrome) browsers
    -moz-user-select: none; // mozilla browsers
    -khtml-user-select: none; // webkit (konqueror) browsers
}
link|improve this answer
3  
Is there any way to actually prevent selection as opposed to removing the selection after the fact? Also, your second if statement could be inside the else if for better readability. – David May 19 '09 at 1:07
You're missing an opening brace in the second if statement </perfectionism> – David May 19 '09 at 1:09
The CSS looks great! Any idea if there's something similar available for IE? – David May 19 '09 at 1:12
Sorry about the mess with the braces; I grabbed that code from another site without checking. Fixed. There's no IE equivalent, I'm afraid. – Paolo Bergantino May 19 '09 at 1:13
5  
Best to use -webkit- prefix (this is the preferred prefix for Webkit based browsers) in addition to -moz- (and -khtml- if you have a large Konqueror audience). – eyelidlessness Oct 14 '09 at 20:37
show 1 more comment
feedback

A simple Javascript function that makes the content inside a page-element unselectable:

function makeUnselectable(elem) {
  if (typeof(elem) == 'string')
    elem = document.getElementById(elem);
  if (elem) {
    elem.onselectstart = function() { return false; };
    elem.style.MozUserSelect = "none";
    elem.style.KhtmlUserSelect = "none";
    elem.unselectable = "on";
  }
}
link|improve this answer
feedback

Using jQuery

$(element).mousedown(function(){ return false; })
link|improve this answer
2  
Yep, I used this to solve the same problem I was having (+1), except instead of return false used event.preventDefault() which doesn't kill any other handlers you might have on mousedown. – Simon Feb 24 at 3:16
feedback

or, on mozilla:

document.body.onselectstart = function() { return false; } // Or any html object

On IE,

document.body.onmousedown = function() { return false; } // valid for any html object as well
link|improve this answer
1  
This sollution doesn't allow selecting text at all. – jmav Oct 12 '10 at 8:18
feedback

Your Answer

 
or
required, but never shown

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