Forum Moderators: open

Message Too Old, No Replies

Sitemap Problem

         

maitre

8:49 pm on Mar 16, 2005 (gmt 0)

10+ Year Member



Hi Y'all,

I'm working on a large portal and I am using iframes to quickly load text into the same page. Works nice.

Now I need to come up with a sitemap that would not only display the main page but also the changing iframes content on this page and I am wondering if that is even possible? Any idea would be greatly appreciated.

Thanks,

Ed

orion_rus

10:52 pm on Mar 16, 2005 (gmt 0)

10+ Year Member



Are you simply need to change content of iframe?
if so you can use one of the following:
<iframe name='myiframe' id='myiframe' src='somesite'>
</iframe>

document.getElementById('myiframe').src='newsite';
or you can try this
myiframe.src

good luck to you

maitre

12:25 am on Mar 17, 2005 (gmt 0)

10+ Year Member



Yes, I have to update the content of the iframe, but it has to be in the context of the respective parent page where the iframe resides. If I load the content of an iframe on a different parent page, this other parent page has to pop up first. I hope this is not too confusing.