How to disable mouse right click on a web page using JavaScript

  • Tech Area
  • August 2, 2023


I am working on a project where I need to disable mouse right click on a web page. How do I implement disable mouse right click script using JavaScript.

Solution

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
    $("body").on("contextmenu",function(e){       //Disable mouse right click
      return false;                                                    
    });
});
</script>


Subscribe us via Email

Join 10,000+ subscriber

Subscribe on YouTube