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

I have this jQuery toggle. It work fine.

   <ul>
    <li>Go to the store</li>
    <li>Pick up dinner</li>
    <li>Debug crash</li>
    <li>Take a jog</li>
  </ul>

 

        $("li").toggle(
          function () {
            $(this).css({"list-style-type":"disc", "color":"blue"});
          },
          function () {
            $(this).css({"list-style-type":"disc", "color":"red"});
          },
          function () {
            $(this).css({"list-style-type":"", "color":""});
          }
        );

The problem is when I do fast clicking, it highlighted the text in it. Is there a way to stop the text from being highlighted?

share|improve this question
What do you mean by "highlighted"? Is text selected in the list item if you click during the toggle? – Residuum Jan 25 '10 at 12:35
Just try to double click a text... You will see what I mean... the text will be selected(highlighted)... I don't want the text to be selected... – Reigel Jan 25 '10 at 12:39

6 Answers

up vote 33 down vote accepted

I'm writing on iPhone, while away from the desk, but a quick Google turned up this page: disable text selection with jQuery.


Edited in response to the 'dead link' comment (from @Herb Caudill). While the original link is, indeed, dead, it appears to be due to a site restructuring (rather than removal) and the new location for the article can be found here: http://chris-barr.com/index.php/entry/disable_text_selection_with_jquery/

And the code provided in that article is reproduced below:

$(function(){
    $.extend($.fn.disableTextSelect = function() {
        return this.each(function(){
            if($.browser.mozilla){//Firefox
                $(this).css('MozUserSelect','none');
            }else if($.browser.msie){//IE
                $(this).bind('selectstart',function(){return false;});
            }else{//Opera, etc.
                $(this).mousedown(function(){return false;});
            }
        });
    });
    $('.noSelect').disableTextSelect();//No text selection on elements with a class of 'noSelect'
});

jQuery snippet written by Chris Barr, of chris-barr.com, as accessed on Friday, 21st of January, 2011.

share|improve this answer
cool... thanks... – Reigel Jan 25 '10 at 12:48
This link is broken, can anyone enlighten us as to what the solution was? – Herb Caudill Jan 21 '11 at 14:58
@Herb Caudill, please see the edit (after the hr) which links to the new location for the same article, and also includes the relevant jQuery here (with as much citation as I could offer, if @Chris Barr wants to contest its inclusion here I will, of course, remove it from the answer). – David Thomas Jan 21 '11 at 18:22
6  
$.browser is deprecated, and binding to an event unsupported by the browser does no evil anyway. So I recommend simply binding “selectstart”, “click” and “mousedown” to a function returning false. This also works in Mozilla, the CSS property MozUserSelect is not needed. – Scytale Apr 11 '11 at 13:37
Nice piece of code. Worked like charm. – SoonDead Jan 30 '12 at 12:36
show 2 more comments

If you use jQuery UI you can disable text selection as simple as that:

$("body").disableSelection();
share|improve this answer
2  
Gotta love jQuery UI :) thanks! – GeenHenk Aug 31 '12 at 7:30
1  
Simple & does the trick. Thanks! The browser detection approach has been removed in jQuery 1.9. – sirthomas Jan 31 at 5:54
//function to be reused later
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() ;
  }
}

$('p').click(clearSelection);

Source

share|improve this answer
Thanks... this did the trick... but ricebowl's suggestion is better... I'll just give you +1. – Reigel Jan 25 '10 at 12:43

I solved this using the non-standard CSS keyword user-select:

.unselectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
share|improve this answer
$( 'selector' ).on( 'selectstart', 'selector', function( ) { 
  return false; 
}).css( 'MozUserSelect','none' ).mousedown( function( ) {
  return false;
}); 

replace the selector with your own - this code works fine on all browsers. Using .on() for elements inserted dynamically to the DOM

share|improve this answer
window.getSelection().empty()

works fine in Chrome, albeit with a quick flash of the selection, which is ugly.

share|improve this answer

protected by Reigel Aug 3 '11 at 1:09

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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