Shoutbox

Iframe Help - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Tech Talk (/forumdisplay.php?fid=17)
+----- Thread: Iframe Help (/showthread.php?tid=39684)

Iframe Help by DJeX on 03-06-2005 at 11:29 PM

How could I load a web page in 3 iFrames form inside a iFrame?


RE: Iframe Help by matty on 03-06-2005 at 11:41 PM

I am sorry this doesn't make much sense?

Do you want to load one page from another iFrame into another iFrame?

Also: http://shoutbox.menthix.net/~msgplus/showthread.php?tid=39496
i posted a reply


RE: Iframe Help by DJeX on 03-06-2005 at 11:52 PM

No no, this is what I want.

I have a main page with 3 iFrames on it. In the first iFrame it loads a page with 2 more iFrames on it. Now on that page in the first iFrame I need to be able to click a link and open a page in the seconed iFrame on the same page and open a link in the 2 other iFrames on the main page.

I hope this can be done. :S


RE: Iframe Help by jren207 on 03-06-2005 at 11:55 PM

name an iframe a name like <iframe name="frame1">

then the link <a target="frame1" href="http://somesite">the link</a>


RE: Iframe Help by DJeX on 03-07-2005 at 12:25 AM

:dodgy: gee I think I know how to do that. That only works for opening 1 frame on the same page.


RE: Iframe Help by jren207 on 03-07-2005 at 12:58 AM

hmm, i thought it would send the page in the target frame of the name as long as it was named to different to other frames... 8-)


RE: Iframe Help by DJeX on 03-07-2005 at 01:05 AM

Not when your trying to go from one frame through another to a frame on the main page.

** I figured it out I needed to use this:

code:
<a href='http://www.yoursite.com/9.html'target=frame2 onclick=window.open('http://www.google.ca','rev');window.open('http://www.google.ca','rev2');return true'><font color='#FFFFFF'>Your text</font></a>

RE: Iframe Help by jren207 on 03-07-2005 at 06:11 PM

ahh ok, it got to complicated... 8-)