Feedback on: irt.org FAQ Knowledge Base Q683
Length:
Too short
Comments:
Whether you have implemented this code anywhere so that I can refer to it.
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.