frameElement property

[This documentation is preliminary and is subject to change.]

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

Syntax

HRESULT value = object.get_frameElement(IHTMLFrameBase** p);

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 LANGUAGE="JScript">
    var oFrame = window.frameElement;
    oFrame.src = "https://msdn.microsoft.com";
</SCRIPT>

 

 

Build date: 6/12/2012