Disable Right click Menu, Copy Paste

Tác giả: Dương Nguyễn Phú Cường
Ngày đăng: 4 năm trước


<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>