PDA

View Full Version : page displaying problems in iframe


systemoverload
06-01-2005, 04:53 PM
i have an iframe, and there are buttons in it, to other sections of my site. when one of the buttons are clicked tho, the other page of the site is displayed in that iframe. i have another iframe in the page which is the pages body. is there a way i can have the links load in the second iframe, when they are clicked in the first one?? thanks so much!

_Aerospace_Eng_
06-01-2005, 05:09 PM
<a href="blah.html" onclick="parent.thesecondframename.location=this.href;return false">Load page in 2nd iframe</a>


Try that, that is if a link is clicked inside the iframe it should load in the 2nd iframe, given that the iframe name is correct. If it doesn't work then show us your code and make us not have to guess what your code looks like.

systemoverload
06-01-2005, 05:51 PM
Thanks so much for your help!! much appriciated!