ItSolutionStuff.com

How to Disable Right Click Menu using JQuery?

By Hardik Savani • June 13, 2023
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.....

Tags: jQuery
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Remove Empty or Null Values from JSON using JQuery?

Read Now →

How to Remove Empty or Null Values from Array in JQuery?

Read Now →

JQuery - How to Push Specific Key and Value in Array?

Read Now →

How to Remove Duplicate Object from Array in JQuery?

Read Now →

PHP JQuery Chosen Ajax Autocomplete Example

Read Now →

How to Remove All Spaces from String in JQuery?

Read Now →

How to Change Date Format in JQuery?

Read Now →

JQuery Prevent Submit Form on Enter Key Except Textarea Example

Read Now →

JQuery Animated Typing Effect using Typed JS Example

Read Now →

How to Call AngularJS Controller Function in JQuery?

Read Now →

PHP Crop Image Before Upload using Croppie JS Example

Read Now →

PHP JQuery Select2 Ajax Autocomplete Example

Read Now →

JQuery Datepicker Example using JQuery UI JS

Read Now →