Some sites do annoying things with JavaScript, like replace the default behaviour of the browser to open a new tab on middle click, with code such as:
<a href="http://stackoverflow.com"
onclick="window.location.href='http://stackoverflow.com'; return false;">
Stack Overflow</a>
Is there any way I can give control back to my browser so that I'm the one that decides when a new tab gets opened or not? Right now I have to resort to either right clicking on the link and selecting Open link in new tab, or middle clicking on my browser's Back button after being rudely navigated away.
window.location.hrefdoes? – Aug 31 '12 at 13:48