I\'m currently designing a simple forum application. It\'s mostly powered by jQuery/AJAX and loads everything on the same page; however, I know that sometimes users want to
$('#element').mousedown(function(event) { if(event.which == 3) { // right click window.open("newlocation.html",""); } });
See it live http://jsfiddle.net/8CHTm/1/