Troubleshooting Hybrid Configuration Wizard failures Each step of the Hybrid Configuration Wizard is logged as it executes, and this log
Category: Uncategorized
Disable selection on Browser using JS
1.Disable selection on Browser using JS window.onload= function() {disableSelection(document.body)}functiondisableSelection(target){if (typeof target.onselectstart!=“undefined”) //IE target.onselectstart=function(){return false}else if (typeof target.style.MozUserSelect!=“undefined”)//Firefox target.style.MozUserSelect=“none”else