I am looking for a simple way to hide/disable the right click context menu for the whole html page but not in some editable html elements just like input[text] and textarea using jquery.
I know this jquery code, but the below code will disable context menu in all html elements even in editable objects...
$(document).ready(function(){
$(this).bind("contextmenu", function(e) {
e.preventDefault();
});
});