I have a number of outgoing links on my webpage that I want to open in new tab of browser but inside an iframe of my own website.
Currently I am using following code:
<a href="www.example.com" target="_blank" onclick="this.href='http://mysite.com/article.php?link=www.example.com'">Example.com</a>
It seems not an effective solution (as I read out some stuff with google results), also I have to manually do this thing in every link.
Is there any other way to accomplish this? JQuerysh way will also good for me.