Saturday, July 22, 2017

HOW TO DISABLE RIGHT CLICK AND CUT,COPY,PASTE



<body> <h1 class="disable" >hey Myself Niraj Kumar </h1> </body> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script> $('body').bind("cut copy paste", function(e) { alert('Cut Copy Paste is disabled..'); e.preventDefault(); }); </script> <script> $('.disable').bind("cut copy paste", function(e) { alert('Cut Copy Paste is disabled..'); e.preventDefault(); }); </script>

No comments:

Post a Comment