![]() |
|
|
+ Search |
![]()
|
Aug 9th, 2001 02:03
Jean-Bernard Valentaten, Kathy Brown,
You have to assing the window-objects to vars, e.g:
var myWindows = new Array();
for(var i=0; i <= 10; i++)
{
myWindows[i] = window.open('someUrl', 'Window' +
i, 'theFeaturesYouNeed');
}
That will do the trick.
HTH