Returns the element (such as <iframe> or <object>) in which the window is embedded, or null if the element is either top-level or is embedded into a document with a different script origin; that is, in cross-origin situations.
Syntax
frameEl = window.frameElement;
frameElis the element which the window is embedded into. If the window isn't embedded into another document, or if the document into which it's embedded has a different origin (such as having been located from a different domain), this isnull.
Despite this property's name, it works for documents embedded within any embedding point, including <object>, <iframe>, or <embed>.
Example
var frameEl = window.frameElement;
// If we're embedded, change the containing element's URL to 'http://mozilla.org/'
if (frameEl) {
frameEl.src = 'http://mozilla.org/';
}
Specifications
| Specification | Status | Comment |
|---|---|---|
| WHATWG HTML Living Standard The definition of 'Window.frameElement' in that specification. |
Working Draft | Initial specification. |
Browser compatibility
| Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|---|
| Basic support | 4? | (Yes) | 1.0 (1.7 or earlier) | 5.5? | 12.1? | 4? |
| Feature | Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|
| Basic support | ? | (Yes) | 1.0 (1.7 or earlier) | ? | ? | ? |
See also
window.framesreturns an array-like object, listing the direct sub-frames of the current window.window.parentreturns the parent window, which is the window containing theframeElementof the child window.
Document Tags and Contributors
Tags:
Contributors to this page:
broAhmed,
libbymc,
Sheppy,
KshitijaKarkar,
Terry,
fscholz,
duncansmart,
teoli,
cpigat,
MHasan,
kscarfone,
leifwickland,
ethertank,
GijsKruitbosch,
thaddee.tyl@gmail.com,
Potappo,
Lenatis,
Mgjbot,
Nickolay,
Mw22
Last updated by:
broAhmed,