Disable right click very easily using jquery

Hello All,

Disabling right click has been really very easy using Jquery. All you need to add below code in your page inside head section.

<script type="text/javascript" language="javascript">
	$(function() {
	$(this).bind("contextmenu", function(e) {
	e.preventDefault();
	});
	});
	</script>

Comments

NOTE : Comments are moderated, and will not appear until the author has approved them.
Post a Comment
  1. Leave this field empty

Required Field