In this small post i will show you how to disable right click using jquery. Here, we will disable right click on page using jquery. we will use the jQuery bind() method for jquery disable right click. when you don't want your users to download your images at that time you can disble your right click function using jquery.
So, let's see how to prevent right click option using jquery.
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body>
<h3>How to Disable Right Click using jQuery</h3>
<script>
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
alert('right click disabled');
return false;
});
});
</script>
</body>
</html>
You may also like :
In this article, we will see laravel 9 livewire pagination example. we will learn how to create a laravel live...
Sep-29-2022
In this article, we will see laravel 9 order by query example. how to use order by in laravel 9.The orderBy me...
Mar-28-2022
In this post we will see how to get selected checkbox value in array using jquery. Here i will give you some example to&...
May-24-2021
In this article, we will see what is new in laravel 9 and the features of laravel 9. Laravel 9 is recently released...
Feb-13-2022