jQuery disable right click on webpage
Please share your comments and feedback.Thanks.Please subscribe my updates via email.
Live DemoDownload Script
Step 1:
Need library file to perform empty action.
Please copy and Paste below library file.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
Step 1:
Need library file to perform empty action.
Please copy and Paste below library file.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
jQuery disable right click
<script type="text/javascript">
$(function() {
$(this).bind("contextmenu", function(e) {
e.preventDefault();
alert("Right Click is not allowed");
});
});
</script>
$(function() {
$(this).bind("contextmenu", function(e) {
e.preventDefault();
alert("Right Click is not allowed");
});
});
</script>
No comments:
Post a Comment