Disable Right Click using JavaScript
In this tutorial of Php Point we will show you how to disable right click using javascript.
Here is the simple javascript code to disable right click. Just add on your head tag and right click will be disabled on that page.
<script src=”http://code.jquery.com/jquery-1.9.1.js”></script>
<script type=”text/javascript” language=”javascript”>
$(function() {
$(this).bind(“contextmenu”, function(e) {
e.preventDefault();
});
});
</script>