For the complete documentation index, see llms.txt. This page is also available as Markdown.

iframeClose

⚠️ Not implemented in the current OSL CLI.

Description

iframeClose destroys an iframe and frees its resources. After closing, the iframe id is no longer valid and cannot be shown again - create a new one with .iframeNew() if needed.

Parameters

iframeClose takes no parameters; it is called on an iframe id returned by .iframeNew().

Usage

frame = "https://example.com".iframeNew()

frame.iframeClose()
// the iframe is removed and its id is no longer usable

Last updated