vote up 4 vote down star
3

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?

flag

43% accept rate

3 Answers

vote up 7 vote down check
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 {
    -moz-user-select: none; // mozilla browsers
    -khtml-user-select: none; // webkit browsers
}
link|flag
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 at 1:07
You're missing an opening brace in the second if statement </perfectionism> – David May 19 at 1:09
The CSS looks great! Any idea if there's something similar available for IE? – David May 19 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 at 1:13
Thanks for your help! – David May 19 at 1:33
show 1 more comment
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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