Learn free online HTML5, javascript, and jquery Tutorials by Examples

Wednesday 11 January 2017

Disable Right Click, Copy, Paste From Web Page Using Jquery
















<script type="text/javascript">
        $(document).ready(function() {
                 $(".disableEvent").on("contextmenu",function(){
                            alert('right click disabled');
                            return false;
                  }); 
       }); 
</script>

No comments:

Post a Comment