Answers for "how-do-i-disable-right-click-on-my-web-page jquery"

0

jquery source disable right click

<script type="text/javascript">
$(document).ready(function () {
    //to disable the entire page
    $("body").on("contextmenu",function(e){
        return false;
    });
    
    //to disable a section
    $("#id").on("contextmenu",function(e){
        return false;
    });
});
</script>
Posted by: Guest on January-06-2022

Code answers related to "how-do-i-disable-right-click-on-my-web-page jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language