Jump to content

iFrames Help


...678

Recommended Posts

Well you could use JavaScript.

<script type="text/javascript">function changeFrame(){ document.getElementById('iframe1').src="NEW LOCATION"}</script><a href="java script:changeFrame()">The link</a><iframe src="SOME URL"id="iframe1"></iframe>

Link to comment
Share on other sites

To be honest, Generally, frames ###### (just my 2 cents )I'd suggest not using frames, if you can. Frames will soon be outdated and replaced by table designs and table-less designs (CSS). If you wish to really excel in the field of web design; choosing a CSS based path would be my opinion in where to go.

Link to comment
Share on other sites

Well you could use JavaScript.
<script type="text/javascript">function changeFrame(){ document.getElementById('iframe1').src="NEW LOCATION"}</script><a href="java script:changeFrame()">The link</a><iframe src="SOME URL"id="iframe1"></iframe>

With that code, where do i put the link that it changes to?AlsoIll try and explain better.On the site there is the navigation, and the content shows in an iFrame in a different section. So I want to be able to click the link on the navigation and the iFrame changes to the content that that link would showWhat are table designs?If you could post a link that would help alot
Link to comment
Share on other sites

A much simpler method would be to use the target attribute in your links and a name attribute in the iframe:

<iframe name="MyFrame" src="default.asp"></iframe><ul><li><a href="http://www.w3schools.com/" target="MyFrame">W3 Schools</a></li><li><a href="http://www.google.com/" target="MyFrame">Google</a></li></ul>

Link to comment
Share on other sites

A much simpler method would be to use the target attribute in your links and a name attribute in the iframe:
<iframe name="MyFrame" src="default.asp"></iframe><ul><li><a href="http://www.w3schools.com/" target="MyFrame">W3 Schools</a></li><li><a href="http://www.google.com/" target="MyFrame">Google</a></li></ul>

Thanks for thatit works :)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...