Completely Stuck...

Hello all...here's what I'm dealing with:<br />
<br />
p1.html = loads an IFRAME with p2.html<br />
p2.html = horizontal frames page (100,20,*,20)<br />
> f1.html = top (images)<br />
> f2.html = nav (links)<br />
> f3.html = bod (content)<br />
> f4.html = bot (random info)<br />
<br />
When I mouseover any link in f2.html I want the image to change in f1.html.<br />
<br />
How da heck do I do dat?!?!?!<br />
<br />
Thanx.<!--content-->get rid of frames to begin with..... :rolleyes:<!--content-->You will have to change the source of an image dynamically,here is the code that lets you access a pge in another frame<br />
<br />
parent.frames["frmeName"].document.images["imageName"].src = <!-- m --><a class="postlink" href="http://www.webdeveloper.com/forum/archive/index.php/">http://www.webdeveloper.com/forum/archive/index.php/</a><!-- m -->"new source"<!--content-->Not working.<br />
<br />
Perhaps I'm doing it wrong?<br />
<br />
Thanx.<!--content-->Try using top rather than parent. From what you said, it sounds like you need to go up two levels.<br />
<br />
top.frames["frmeName"].document.images["imageName"].src = <!-- m --><a class="postlink" href="http://www.webdeveloper.com/forum/archive/index.php/">http://www.webdeveloper.com/forum/archive/index.php/</a><!-- m -->"new source";<!--content-->
 
Back
Top