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.

[code:js]

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

[/code]