Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How Do I Update Two(2) Frames Simoultaneously In IE5?

Status
Not open for further replies.

pwel

Programmer
Aug 18, 1999
79
GB
I'm trying to update two frames with an onClick<br>
event.<br>
<br>
The following code works with NN but not with IE5? Any help with this on the IE side would be much appreciated.<br>
<br>
&lt;A HREF=&quot;#&quot; <br>
onClick=&quot;parent.main.location='NovellPatches.htm'; window.location='NovPatchesNav.html';&quot;<br>
onMouseOver=&quot;swapButton('Novell','Over')&quot;<br>
onMouseOut=&quot;swapButton('Novell','Norm')&quot;<br>
onMouseDown=&quot;swapButton('Novell','Click')&quot;<br>
onMouseUp=&quot;swapButton('Novell','Norm')&quot;&gt;<br>
&lt;IMG NAME=&quot;Novell&quot; SRC=&quot;gifs/NovellOF_5.gif&quot;<br>
BORDER=0 HEIGHT=15 WIDTH=141 VSPACE=&quot;0&quot; ALT=&quot;Novell patches&quot;&gt;&lt;/A&gt;<br>
<br>
Thanks,<br>
<br>
Paul Welding.<br>

 
Hmmm.... how about using:<br>
<i>&lt;A HREF=&quot;#&quot; <br>
onClick=&quot;parent.main.location='NovellPatches.htm';&quot;<br>
onMouseOver=&quot;swapButton('Novell','Over')&quot;<br>
onMouseOut=&quot;swapButton('Novell','Norm')&quot;<br>
onMouseDown=&quot;swapButton('Novell','Click')&quot;<br>
onMouseUp=&quot;swapButton('Novell','Norm')&quot;&gt;<br>
&lt;IMG NAME=&quot;Novell&quot; SRC=&quot;gifs/NovellOF_5.gif&quot;<br>
BORDER=0 HEIGHT=15 WIDTH=141 VSPACE=&quot;0&quot; ALT=&quot;Novell patches&quot;&gt;&lt;/A&gt;</i><br>
in the navbar page and:<br>
<i>&lt;A HREF=&quot;#&quot; <br>
onClick=&quot;parent.navbar.location='NovPatches.htm';&quot;<br>
&lt;/A&gt;</i><br>
in the <i>&lt;head&gt;</i> of the NovellPatches.htm page.<br>
<br>
Then the nav page would open the NovellPatches page & the NovellPatches page would turn around & immediately return the favor ;) <p>-Robherc<br><a href=mailto:robherc@netzero.net>robherc@netzero.net</a><br><a href= > </a><br>*nix installation & program collector/reseller. Contact me if you think you've got one that I don't :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top