Due to popular demand, here is how you do it. Under the disclaimer that we think this is a complete waste of time, and all it will do is remove real, existing, helpful information found in the browser right-click menu, below is the code. Also, great article against doing this:
http://www.sitepoint.com/dont-disable-right-click/
Under Design > Developer > Custom Javascript
$(document).ready(function() { $(document).bind("contextmenu", function(e) { return false; }); });
Also, to disable tablet/phone context menus (for any webkit browser like iOS):
Under Design > Developer > Custom CSS
.main img { -webkit-touch-callout: none; }
9 Comments