i want be put all of my main links in the iframe and when clicked they load into the page.any ideas how this would work?
Printable View
i want be put all of my main links in the iframe and when clicked they load into the page.any ideas how this would work?
You have to supply the target attribute within the <a> tag.
Code:<iframe name="mainframe"...></iframe>
<a href="page.html" target="mainframe">Load page</a>
ok thank you i will try that.