Does jQuery or jQuery-UI have any functionality to disable text selection for given document elements?
|
|
In jQuery 1.8, this can be done as follows:
|
|||||||||||||||||||
|
|
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):
The code is realy simple, if you don't want to use jQuery UI :
|
|||||||||
|
|
I found this answer ( Prevent Highlight of Text ) most helpful, and perhaps it can be combined with another way of providing IE compatibility.
|
|||
|
|
|
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)
and call example
|
|||||||||
|
|
The following would disable the selection of all classes 'item' in all common browsers (IE, Chrome, Mozilla, Opera and Safari):
|
|||
|
|
|
This can easily be done using JavaScript This is applicable to all Browsers
Call to this function
|
||||
|
|
|
|||
|
|
|
1 line solution for CHROME:
and FF:
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:
It handles all browsers transparently. The non-IE browsers are handled like this:
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:
|
|||
|
|
|
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:
Add jQuery:
Optional: To disable selection for all children elements as well, you can change the IE block to:
Usage:
|
|||
|
|
|
This works perfect for me:
|
||||
|
|
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.
