You can disable the whole page or part of the page. here's an example, we use event binding to disable cutting, copying and pasting. see the beating by following the example of how to disable cutting, copying and pasting using jquery.


  Disable whole page

 $(document).ready(function() {
        //Disable whole page
        $(this).bind('cut copy paste', function(e) {
            e.preventDefault();
        });

    });


Disable particular part of the page

<script>
    $(document).ready(function() {
        //Disable particular part of the page
        $('p').bind('cut copy paste', function(e) {
            e.preventDefault();
        });
    });
</script>