The following code works well in Chrome/Opera but not working in Firefox/IE.Please help me.
$('.class name of anchor tag').mousedown(function(e){
if(e.which==2)
{
e.preventDefault();
window.location = '';
}
});
I want to disable mouse middle button on hyperlink to prevent opening page in new tab.The code should work in FF/IE.I dont have any problem with capturing events. Event is triggering well.What is the code to prevent opening link once an user clicks middle button(ie when event triggerd).