hey,
what i have is a script that, when i have two frames and i pass my mouse over a text link in one, it causes an image rollover in the other. the specific script i've used is:
-----------------------------------
Like a normal rollover is:
<A href="blabla.html" onMouseover="rolloverimage.src='newimage.gif'" onMouseout="rolloverimage.src='normalimage.gif'">TEXT LINK</A>
So, to do frames is:
<a href="blabla.html" onMouseover="parent.framename.otherframerolloverimage.src='newimage.gif'" onMouseout="parent.framename.otherframerolloverimage.src='normalimage.gif'">TEXT LINK</A>
----------------------------------
however, i've restructuerd my site and now have nested frames, the text link being not of the same parent frameset as the images i want rolling over. can someone suggest simple changes to my existing script to make this work? perhaps something that will also work in NS4+ or NS at all, not just IE?
thanks in advance for any help.
ag.
what i have is a script that, when i have two frames and i pass my mouse over a text link in one, it causes an image rollover in the other. the specific script i've used is:
-----------------------------------
Like a normal rollover is:
<A href="blabla.html" onMouseover="rolloverimage.src='newimage.gif'" onMouseout="rolloverimage.src='normalimage.gif'">TEXT LINK</A>
So, to do frames is:
<a href="blabla.html" onMouseover="parent.framename.otherframerolloverimage.src='newimage.gif'" onMouseout="parent.framename.otherframerolloverimage.src='normalimage.gif'">TEXT LINK</A>
----------------------------------
however, i've restructuerd my site and now have nested frames, the text link being not of the same parent frameset as the images i want rolling over. can someone suggest simple changes to my existing script to make this work? perhaps something that will also work in NS4+ or NS at all, not just IE?
thanks in advance for any help.
ag.
Comment