window.frames
Returns an array of the subframes in the current window.
Syntax
frameList = window.frames
Parameters
frameList is an array of frame objects.
Example
frames = window.frames; for (var i = 0; i < frames.length; i++) { // do something with each subframe as frames[i] }
Notes
Specification
DOM Level 0. Not part of specification.
Netscape Communications http://developer.netscape.com |