I want control middle mouse button, I mean when user left clicked of middle clicked or right clicked on my link I should show fancybox.
so I use this code :
$(".reg").live("mousedown", function(e) {
if ((e.which == 1) || (e.which == 2) || (e.which == 3)) {
$.fancybox({
href : 'register.php'
});
}
e.preventDefault();
return false;
});
But on this code just left click will work.