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
You may load any source you wish into an I-frame.
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
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