Click to See Complete Forum and Search --> : Change IFRAME src


michelle
02-04-2003, 04:52 PM
Can I change the SRC for an IFRAME using JavaScript?

i.e change the www.google.com to www.altavista.com

<IFRAME SRC="http://www.google.com">
</IFRAME>

Any thoughts?
// Michelle

CyCo
02-04-2003, 05:01 PM
You may load any source you wish into an I-frame.

pyro
02-04-2003, 05:01 PM
Never tried, but I'd guess you could do it like this.

document.iframename.location = "http://www.altavista.com";

And of course, remember to change iframename to the name of your iframe. :D

pyro
02-04-2003, 05:09 PM
Ok, just tested it. It works fine.

You may want to use this instead, though...

top.iframename.location = "http://www.altavista.com";

michelle
02-04-2003, 05:26 PM
Man. That wa a fast reply...

Thanks a bunch! :D

Regards,
// Michelle