vote up 2 vote down star

I am building a menu in HTML/CSS/JS and I need a way to prevent the text in the menu from being highlighted when double-clicked on. I need a way to pass the id's of several divs into a function and have highlighting turned off within them.

So when the user accidentally (or on purpose) double clicks on the menu, the menu shows its sub-elements but its text does not highlight.

There are a number of scripts out there floating around on the web, but many seem outdated. What's the best way?

flag

Why do you feel a need to prevent a user's text-selection? – ricebowl May 9 at 15:58

5 Answers

vote up 1 vote down check

You could:

  • Give it ("it" being your text) a onclick event
  • First click sets a variable to the current time
  • Second click checks to see if that variable is x time from the current, current time (so a double click over, for example, 500ms, doesn't register as a double click)
  • If it is a double click, do something to the page like adding hidden HTML, doing document.focus(). You'll have to experiment with these as some might cause unwanted scrolling.
link|flag
If you're trying to do this as a soft-DRM, please drop the idea! People could do control+a or just read the source. – Oli Sep 26 '08 at 12:41
Thanks, but I know there must be a more elegant solution. The scripts out there now that work do not use timers. – ChrisTek Sep 26 '08 at 12:56
vote up 0 vote down

Hope this is what you are looking for.

<script type="text/javascript">
function clearSelection() {
var sel ;
if(document.selection && document.selection.empty){
document.selection.empty() ;
} else if(window.getSelection) {
sel=window.getSelection();
if(sel && sel.removeAllRanges)
sel.removeAllRanges() ;
}
}
</script>

<div ondblclick="clearSelection()">Some text goes here.</div>
link|flag
vote up 0 vote down

You could use this CSS to simply hide the selection color (not supported by IE):

#id::-moz-selection {
background: transparent;
} 

#id::selection {
background: transparent;
}
link|flag
vote up 2 vote down

In (Mozilla, Firefox, Camino, Safari, Google Chrome) you can use this:

div.noSelect {
  -moz-user-select: none;//mozilla browsers
  -khtml-user-select: none;//webkit browsers
}

For IE there is no CSS option, but you can capture the ondragstart event, and return false;

link|flag
vote up 0 vote down

Wow great tips! Thanks!

link|flag

Your Answer

Get an OpenID
or

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