http://javascript-html-5.blogspot.com/2017/01/disable-right-click-copy-paste-from-web.html <script type="text/javascript"> $(document).ready(function() { $(".disableEvent").on("contextmenu",function(){ alert('right click disabled'); return false; }); }); </script>
No comments:
Post a Comment