Jquery :: Disable Right Click
Created For: http://stackoverflow.com/q/10864249/352449
HTML
<canvas id="myCanvas" width="200" height="100">
Your browser does not support the canvas element.
</canvas>
<img src="http://db.tt/oM60W6cH" alt="bubu">
CSS
canvas {
border:1px solid #D9D9D9;
background-color: #F2F2F2;
}
JavaScript
$('body').on('contextmenu', '#myCanvas', function(e){ return false; });