Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

frameElement property

Retrieves the frame or iframe object that is hosting the window in the parent document.

Syntax

JavaScript

p = object.frameElement

 

Property values

Type: Object

the frame or iframe.

Remarks

The window must be a frame or iframe.

Examples

The following example retrieves the frame element of the window and sets its source URL to Microsoft Developer Network (MSDN) Online.


<script type="text/javascript">
    var oFrame = window.frameElement;
    oFrame.src = "http://msdn.microsoft.com";
</script>


See also

window

 

 

Show:
© 2017 Microsoft