farhad
(Farhad)
1
I’d like to embed an iFrame on my page and have a few navigation items outside it that can change the contents of that iFrame. Is this possible?
Thanks in advance for your help!
Here is my site Read-Only: LINK
(how to share your site Read-Only link)
vincent
(Vincent Bidaux)
2
Code would be this:
<iframe name="iframe1" src="target.html"></iframe>
<a href="link.html" target="iframe1">link</a>
So you can add a custom attribute to your link, with the declared name of your iframe.
farhad
(Farhad)
3
Amazing, thanks for the quick response!