TOC PREV NEXT INDEX

Put your logo here!


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

None.

Specification

DOM Level 0. Not part of specification. 


mozilla.org | mailto:oeschger | bug 93108
TOC PREV NEXT INDEX