iterator - goes through all windows and calls a user handler
handler | function | user-defined function |
myWins.forEachWindow(function(){
// your code here
});
// or
function doWithWindow(){
// your code here
});
myWins.forEachWindow(doWithWindow);
Back to top