Some of us might want to disable the mouse right click .Below simple code snippet can be used to d the job easily using jQuery.

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

Related posts:

  1. How to prevent form submission when enter key is pressed using jquery.
  2. How to create a for loop in jquery
  3. How to get the values of the selected checkboxes into an Array using Jquery
  4. How to parse XML data using Jquery
  5. How to count the number of lines in the input textarea