1. Add styles to elements -webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; user-select:none;
2. ie6-ie9 needs to add the following js
a. //The text cannot be selected
var oDrag = document.getElementsByClassName("ard-adv");
for(var i =0; i
i ) >b. //The entire webpage
document.body.onselectstart = document.body.ondrag = function(){
return false;
}