|
|
|
|
|
window.frames
Returns an array of the subframes in the current window.
Syntax
frameList = window.framesParameters
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.
| mozilla.org | mailto:oeschger | bug 93108 |
|
|
|
|
|