Is there a way to execute a certain function with a right click even after the browser context menu has been disabled?
I attempted the following method:
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
$('.alert').fadeToggle();
return false;
});
});