disable copy paste in blog

  <script type="text/javascript">

    $(document).ready(function() {
        //Disable cut copy paste
        $('body').bind('cut copy paste', function(e) {
            e.preventDefault();
        });
        //Disable mouse right click
        $("body").on("contextmenu", function(e) {
            return false;
        });
    });
</script>


write it inside just above the </body> tag

No comments:

Post a Comment