Description
Its easy! For disable the right button only needs use this code.
Code
jQuery(document).ready(function( $ ){
$(function() {
$(this).bind("contextmenu", function(e) {
e.preventDefault();
});
});
});