View Full Version : 2 page targeting


SamanthaSkye
07-17-2003, 05:54 AM
I have three frames *top, left and right*. I want to be able to click a link in the top frame and have pages load in both the left and right frames... is that possible? I know how to load/target one page but not two... help?

pb&j
07-17-2003, 02:18 PM
try this...

<a href="newpage1.html"
onClick="parent.left.location='newpage2.html'" target="right"> text or image </a>

newpage1.html will load into the area called right.
newpage2.html will load into the area called left.