You are here: irt.org | About | Feedback | 5258 [ previous next ]
Feedback on:
irt.org FAQ Knowledge Base Q683
Sent by
Mark on Wednesday April 23, 2008 at 03:32:19
Worth:
Not worth reading
Length:
Just right
Technical:
Not technical enough
Comments:
Why not use something like this:
var myWindows = new Array();
function openWindow(url){
myWindows.push(window.open(url));
}
function closeWindows(){
for(i=0; i<myWindows.length; i++){
myWindows[i].close();
}
}
Maybe you want to keep track of closed windows etc... but this might be a start.
Other feedback on 'irt.org FAQ Knowledge Base Q683' - show all