In this tutorial we will see how to Disable Right Click on Website Using JQuery. .bind() method and contextmenu event are used for this purpose.
Table of Contents
HTML Code
HTML Code is given below.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Disable Right Click on Website Using JQuery</title>
<script src="https://code.jquery.com/jquery-3.5.1.js"></script>
</head>
<body>
</body>
</html>
JQuery Code
JQuery Code is given below, In this code we have used .bind() method for attaching contextmenu event handler with document. The contextmenu event fires when the user right clicks on element.
<script>
$(document).ready(function(){
$(document).bind("contextmenu",function(event){
alert('Right Click is Disabled');
return false;
});
});
</script>
Demo
Video Tutorial
Watch video tutorial on how to Disable Right Click on Website Using JQuery.
Post a Comment