Change iframe src by clicking a link

You don’t need jQuery for that. You don’t even need JavaScript for that.

Give your iframe a name, and target your anchors to point to it:

<a href="https://stackoverflow.com/questions/1473295/foo.html" target="myiframe">Foo</a>
<a href="bar.html" target="myiframe">Bar</a>
<a href="baz.html" target="myiframe">Baz</a>

<iframe name="myiframe"></iframe>

This degrades nicely for people who have JavaScript turned off.

Leave a Comment