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

iframeHide

⚠️ Not implemented in the current OSL CLI.

Description

iframeHide hides an iframe without destroying it. The page keeps running in the background and can be shown again with .iframeShow(). To remove it entirely use .iframeClose().

Parameters

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

Usage

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

frame.iframeHide()
// the iframe is no longer drawn, but still loaded

Last updated