Nov 19, 2014

Disabling Right Mouse Click Using JQuery

Below jQuery code Will Disable The Right Mouse Click On Your Browser

$(document).ready(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});

Copy Paste This Code Below And Simply Do What Ever Your Planning To Do With It

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
<title>Disabling Right Mouse Click</title>  

<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script>
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
return false;
});
   });
</script>
</head>
<body>
Right Mouse Click Disabled
</body>
</html>

No comments:

JWT Token Decode Using Jquery

When it come to authentication we use many mechanism. Ones the user authenticated we must keep these details somewhere safe. So we can share...