Disable the right click (context) on images but can be used on any element.
// Disable right click - CoffecScript
$("#img").bind "contextmenu", (e) ->
false
// Disables drag/drop of an image from an HTML page - CoffecScript
$("#img").mouseup ->
false
$("#img").mousedown ->
false
$("#img").click ->
false
// Disable right click - jQuery
$('#img').bind('contextmenu', function(e) {
return false;
});