This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Returns the window itself, which is an array-like object, listing the direct sub-frames of the current window.
A list of frame objects. It is similar to an array in that it has a length property and its items can be accessed using the [i] notation.
frames === window evaluates to true.window.frames pseudo-array represents the Window object corresponding to the given <frame>'s or <iframe>'s content, not the frame or iframe DOM element (i.e., window.frames[0] is the same thing as document.getElementsByTagName("iframe")[0].contentWindow).const frames = window.frames; // or const frames = window.parent.frames;
for (let i = 0; i < frames.length; i++) {
// do something with each subframe as frames[i]
frames[i].document.body.style.background = "red";
}
| Specification |
|---|
| HTML> # dom-frames-dev> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
frames |
1 | 12 | 1 | ≤12.1 | 1 | 18 | 4 | ≤12.1 | 1 | 1.0 | 4.4 | 1 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Window/frames