Link to home
Start Free TrialLog in
Avatar of jim220742
jim220742

asked on

Getting a third window

I know how to launch a second window from my page using Target=top, but how do I launch a third window all three to be opened at the same time, so users can download large graphics in the third window while continuing to view small ones in the second window reffered from an index in the first.

Thanks
ASKER CERTIFIED SOLUTION
Avatar of chewymon
chewymon

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of morbiusx
morbiusx

go to this page for the code you want
http://www.htmlgoodies.com/tutors/zippy1.html#nobutt
good luck
jim220742,

This script will open two windows when the hyper link was clicked :

<HTML>
<script language = JavaScript>
function openWindows(URL1, URL2)
{
      open(URL1);
      open(URL2);
}
</script>
<body>
      <a href = "javascript:openWindows('1.htm', '2.htm')">Click me</a>
</body>
</HTML>

<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>
Can this solve your problem ?
<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>
-- Holy Spirit
Avatar of jim220742

ASKER

The answer from chewymon involved changing one word from what I am already doing
Told me just what I wanted to know, I only have to change one word from what I am already doing.

Thanks