I have been trying to apply user-select for both Opera 10.62 and IE9 without success. I can\'t/won\'t bind events with JavaScript that preventDefault()
user-select
preventDefault()
You can use combination of -webkit-user-select: none;, -moz-user-select: none; and specific property unselectable="on", as I described here:
-webkit-user-select: none;
-moz-user-select: none;
unselectable="on"
How to make text unselectable on HTML page