I have the following problem: I use Javascript onclick event to change href of a link. It works like a charm but only if user just clicks a link. If "Open in new tab" feature is used for the link - onclick event will not fire and href will never change. Is there any way to handle such an event? Perhaps with jQuery or some other JS Framework?
Example:
<a href="some_url" onclick="this.href = 'some_other_url'">Link</a>
Try to change
<a href="some_url" onclick="this.href = 'some_other_url'">Link</a>
to
<a href="some_url" onmousedown="this.href = 'some_other_url'">Link</a>