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

iframeShow

⚠️ Not implemented in the current OSL CLI.

Description

iframeShow makes a hidden iframe visible again. It is the counterpart to .iframeHide().

Parameters

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

Usage

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

frame.iframeHide()
// ... later ...
frame.iframeShow()
// the iframe is visible again

Last updated