Im terrible with jquery / javascript and don't have time to learn atm.
Basically, there are multiple external links listed on a page.. What I need is jquery / javascript code that will open up the link as an iframe popup (sorta like lightbox) when clicked.
Here is my code that it needs to work with.
Code
<div class="container">
<table id="s" class="links">
<tbody>
<tr><td id="site"><a href="http://foobar.com/" name="link">Foobar link 1</a></td></tr>
<tr><td id="site"><a href="http://foobar.com/" name="link">Foobar link 2</a></td></tr>
<tr><td id="site"><a href="http://foobar.com/" name="link">Foobar link 3</a></td></tr>
<tr><td id="site"><a href="http://foobar.com/" name="link">Foobar link 4</a></td></tr>
<tr><td id="site"><a href="http://foobar.com/" name="link">Foobar link 5</a></td></tr>
</tbody>
</table>
</div>
This post was edited by SelfTaught on Feb 11 2014 01:03am