Log in

View Full Version : Coming to You all in Desperation!-- iframes



macool
02-05-2006, 08:52 AM
Hello: (I'm somewhat new to Dreamweaver/HTML, so please bare with me) I am build my own site and having problems with coding / iFrames

The 'homepage' opens with a middle table inserted (as a iFrame-tag) with that of another HTML doc...then when the user selects a specific button(lets say 'RESUME' button) I want this button link to then be able to replace the ' HOME' middle iframe with another HTML document (iframe) and so on...(BTW-all other surrounding tables remain constant) I am not sure how to do this.

I am just grasping this concept of iFrames, so if this can be done a better way, I respectfully honor your advice! Is there anyone that can help me?

Thank you Gurus ...very much-Cheers!

jscheuer1
02-05-2006, 10:20 AM
If you have an iframe, add a name attribute:


<iframe name="mid" src="home.htm"></iframe>

Now a link can be:


<a href="next.htm" target="mid">Link Text or Image</a>