Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

Feedback: irt.org FAQ Knowledge Base Q683

Feedback on: irt.org FAQ Knowledge Base Q683

Sent by Praveen on April 03, 2002 at 02:57:16: - feedback #3745

Length:
Too short

Comments:
Whether you have implemented this code anywhere so that I can refer to it.


Sent by Mark on Wednesday April 23, 2008 at 03:32:19 - feedback #5258

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.




©2018 Martin Webb