How to Disable Right Click Menu using JQuery?
Today, i am going to tell you how to disable mouse right click on div. this example thought you can learn how to disable right click on page or image or any html tag.
jquery provide contextmenu event that way we can prevent right click on specific html element. In this example i used contextmenu event with on().
So, let's see example code and check demo.
Example:
<html lang="en">
<head>
<title>Jquery - disable right click on div using context menu </title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
</head>
<body>
<div class="container">
<div class="my-div" style="width:500px;height:500px;background:red"></div>
</div>
<script type="text/javascript">
$(document).ready(function() {
$(".my-div").on("contextmenu",function(){
return false;
});
});
</script>
</body>
</html>
So, let's check.....
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Remove Empty or Null Values from JSON using JQuery?
- How to Remove Empty or Null Values from Array in JQuery?
- JQuery - How to Push Specific Key and Value in Array?
- How to Remove Duplicate Object from Array in JQuery?
- PHP JQuery Chosen Ajax Autocomplete Example
- How to Remove All Spaces from String in JQuery?
- How to Change Date Format in JQuery?
- JQuery Prevent Submit Form on Enter Key Except Textarea Example
- JQuery Animated Typing Effect using Typed JS Example
- How to Call AngularJS Controller Function in JQuery?
- PHP Crop Image Before Upload using Croppie JS Example
- PHP JQuery Select2 Ajax Autocomplete Example
- JQuery Datepicker Example using JQuery UI JS