Disable Do Not Allow Copy Data On Page with Javascript
➤ Javascript <script> $(document).ready(function(){ disableSelection(document.body); }); function disableSelection(target){ $(function() { $(this).bind("contextmenu", function(e) { e.preventDefault(); }); }); if (typeof target.onselectstart!="undefined") //For IE target.onselectstart=function(){return false} else if (typeof target.style.MozUserSelect!="undefined") //For Firefox target.style.Moz...