1.Disable selection on Browser using JSwindow.onload= function(){disableSelection(document.body)}functiondisableSelection(target){if (typeof target.onselectstart!=“undefined”) //IEtarget.onselectstart=function(){return false}else if (typeof target.style.MozUserSelect!=“undefined”)//Firefoxtarget.style.MozUserSelect=“none”else //All other ie: Operatarget.onmousedown=function(){return false}target.style.cursor = “default”}