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

Does jQuery or jQuery-UI have any functionality to disable text selection for given document elements?

share|improve this question
3  
@John: Does the link above answer your question? If it does not, you might want to throw in some more detail as to how your situation is different. – Jørn Schou-Rode Apr 23 '10 at 15:59
1  
Yes it does. But although the answer is the same, that question is very specific so many can miss that answer having in mind more general question (as I did). – JohnM2 Apr 23 '10 at 16:09
@Jhon: The other question has a jQuery solution too. – Omar Abid Apr 23 '10 at 16:34

10 Answers

up vote 167 down vote accepted

In jQuery 1.8, this can be done as follows:

(function($){
    $.fn.disableSelection = function() {
        return this
                 .attr('unselectable', 'on')
                 .css('user-select', 'none')
                 .on('selectstart', false);
    };
})(jQuery);
share|improve this answer
1  
The JavaScript alternative works only for IE. "onselectstart" is not available for other browsers – Omar Abid Apr 23 '10 at 16:32
10  
@Omar: I'm well aware of that. – SLaks Apr 23 '10 at 16:33
+1! I knew there was a simple way to do this. I have done this in Prototype in the past, but now that I am switching over to jQuery I was having trouble making the conversion. Thanks! – exoboy Aug 3 '10 at 1:02
2  
6  
Thanks for this. I was working on a dragging slider and needed a way that text wouldn't be selected in the process. – Spencer Ruport Nov 14 '11 at 6:11
show 10 more comments

If you use jQuery UI, there is a method for that, but I can only handle mouse selection (i.e. CTRL+A is still working):

$('#poet').disableSelection();

The code is realy simple, if you don't want to use jQuery UI :

$(el).attr('unselectable','on').css('UserSelect','none').css('MozUserSelect','none');
share|improve this answer
1  
the jquery ui function would be great, but it doesn't offer the same level of protection, it does prevent selecting things directly, but if you're carrying a selection from another dom object, you need the css rules too - heres the function = function () { return this.bind( ( $.support.selectstart ? "selectstart" : "mousedown" ) + ".ui-disableSelection", function( event ) { event.preventDefault(); }); } – chrismarx Aug 4 '11 at 19:21
+1 for the second solution withour jquery ui – albanx Dec 26 '12 at 13:34
Note that disableSelection() is deprecated in jQuery UI 1.9 – mar10 May 14 at 6:09

I found this answer ( Prevent Highlight of Text ) most helpful, and perhaps it can be combined with another way of providing IE compatibility.

#yourTable
{
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
share|improve this answer
Chrome uses -webkit-user-select – tim Sep 6 '12 at 20:55

Here's a more comprehensive solution to the disconnect selection, and the cancellation of some of the hot keys (such as Ctrl+a,Ctrl+c and Ctrl+s)

   (function($){

$.fn.ctrl = function(key, callback) {
    if(typeof key != 'object') key = [key];
    callback = callback || function(){ return false; }
    return $(this).keydown(function(e) {
        var ret = true;
        $.each(key,function(i,k){
            if(e.keyCode == k.toUpperCase().charCodeAt(0) && e.ctrlKey) {
                ret = callback(e);
            }
        });
        return ret;
    });
};


$.fn.disableSelection = function() {
    $(window).ctrl(['a','s','c']);
    return this.each(function() {           
        $(this).attr('unselectable', 'on')
               .css({'-moz-user-select':'none',
                    '-o-user-select':'none',
                    '-khtml-user-select':'none',
                    '-webkit-user-select':'none',
                    '-ms-user-select':'none',
                    'user-select':'none'})
               .each(function() {
                    $(this).attr('unselectable','on')
                    .bind('selectstart',function(){ return false; });
               });
    });
};

})(jQuery);

and call example

$(':not(input,select,textarea)').disableSelection();
share|improve this answer
2  
Why do you call attr('unselectable', 'on') twice? Is it a typo or is it useful? – KajMagnus Feb 2 '12 at 7:30
worked great for me. Thanks! – Brian Patterson Sep 23 '12 at 0:53
This worked great for me, but I had to disable the ".each(function() { $(this).attr('unselectable','on') .bind('selectstart',function(){ return false; }); });" section for my particular web app (JQuery Mobile), just in case it helps anyone.. – Anthony Apr 25 at 19:54

The following would disable the selection of all classes 'item' in all common browsers (IE, Chrome, Mozilla, Opera and Safari):

$(".item")
.attr('unselectable', 'on')
.css('user-select', 'none')
.css('MozUserSelect', 'none')
.on('selectstart', false)
.on('mousedown', false);
share|improve this answer

This can easily be done using JavaScript This is applicable to all Browsers

<script type="text/javascript">

/***********************************************
* Disable Text Selection script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

function disableSelection(target){
if (typeof target.onselectstart!="undefined") //For IE 
    target.onselectstart=function(){return false}
else if (typeof target.style.MozUserSelect!="undefined") //For Firefox
    target.style.MozUserSelect="none"
else //All other route (For Opera)
    target.onmousedown=function(){return false}
target.style.cursor = "default"
}
 </script>

Call to this function

<script type="text/javascript">
   disableSelection(document.body)
</script>
share|improve this answer
This one is great! But how do we stop the "focus" on it? – mutanic Apr 30 at 7:24
        $(document).ready(function(){
            $("body").css("-webkit-user-select","none");
            $("body").css("-moz-user-select","none");
            $("body").css("-ms-user-select","none");
            $("body").css("-o-user-select","none");
            $("body").css("user-select","none");
        });
share|improve this answer
Could you write a brief summary of the answer in addition to the code? – jonsca Sep 24 '12 at 12:31

1 line solution for CHROME:

body.style.webkitUserSelect = "none";

and FF:

body.style.MozUserSelect = "none";

IE requires setting the "unselectable" attribute (details on bottom).

I tested this in Chrome and it works. This property is inherited so setting it on the body element will disable selection in your entire document.

Details here: http://help.dottoro.com/ljrlukea.php

If you're using Closure, just call this function:

goog.style.setUnselectable(myElement, true);

It handles all browsers transparently.

The non-IE browsers are handled like this:

goog.style.unselectableStyle_ =
    goog.userAgent.GECKO ? 'MozUserSelect' :
    goog.userAgent.WEBKIT ? 'WebkitUserSelect' :
    null;

Defined here: http://closure-library.googlecode.com/svn/!svn/bc/4/trunk/closure/goog/docs/closure_goog_style_style.js.source.html

The IE portion is handled like this:

if (goog.userAgent.IE || goog.userAgent.OPERA) {
// Toggle the 'unselectable' attribute on the element and its descendants.
var value = unselectable ? 'on' : '';
el.setAttribute('unselectable', value);
if (descendants) {
  for (var i = 0, descendant; descendant = descendants[i]; i++) {
    descendant.setAttribute('unselectable', value);
  }
}
share|improve this answer

I think this code works on all browsers and requires the least overhead. It's really a hybrid of all the above answers. Let me know if you find a bug!

Add CSS:

.no_select { user-select: none; -o-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -ms-user-select:none;}

Add jQuery:

(function($){
    $.fn.disableSelection = function() 
    {       
        $(this).addClass('no_select');              
        if($.browser.msie)
        {
            $(this).attr('unselectable', 'on').on('selectstart', false);            
        }
    return this;            
};
})(jQuery);

Optional: To disable selection for all children elements as well, you can change the IE block to:

$(this).each(function() {
    $(this).attr('unselectable','on')
    .bind('selectstart',function(){ return false; });
});

Usage:

$('.someclasshere').disableSelection();
share|improve this answer

This works perfect for me:

$("select").each(function (index, item) {        

    var name = $(item).attr("name");
    var id = $(item).attr("id");
    var val = $(item).val();

    $(item).attr("name", name + index);
    $(item).attr("id", id + index);
    $(item).attr("disabled", "disabled"); 

    var html = "<input type='hidden' name='" + name + "' id='" + id + "' value='" + val + "'/>";
    $(item).before(html);        
});
$
share|improve this answer

protected by Mottie Apr 30 at 14:08

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.