ironhide1975
Programmer
How do I tell an iFrame (inside frame) to load another page with an onClick?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[gray]...[/gray]
<a href="another.htm" target="inside" onclick="alert('Why the onclick ?')">load</a>
[gray]...[/gray]
<a href="#" onclick="inside.location.href='another.htm'">whatever</a>
[gray]...[/gray]
<iframe name="inside">
[gray]...[/gray]