Click to See Complete Forum and Search --> : Completely Stuck...


stmasi
05-22-2003, 05:33 PM
Hello all...here's what I'm dealing with:

p1.html = loads an IFRAME with p2.html
p2.html = horizontal frames page (100,20,*,20)
> f1.html = top (images)
> f2.html = nav (links)
> f3.html = bod (content)
> f4.html = bot (random info)

When I mouseover any link in f2.html I want the image to change in f1.html.

How da heck do I do dat?!?!?!

Thanx.

Vladdy
05-22-2003, 05:58 PM
get rid of frames to begin with..... :rolleyes:

khalidali63
05-22-2003, 05:59 PM
You will have to change the source of an image dynamically,here is the code that lets you access a pge in another frame

parent.frames["frmeName"].document.images["imageName"].src = "new source"

stmasi
05-22-2003, 06:12 PM
Not working.

Perhaps I'm doing it wrong?

Thanx.

pyro
05-22-2003, 06:17 PM
Try using top rather than parent. From what you said, it sounds like you need to go up two levels.

top.frames["frmeName"].document.images["imageName"].src = "new source";