iframeHide
Last updated
⚠️ Not implemented in the current OSL CLI.
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().
iframeHide takes no parameters; it is called on an iframe id returned by .iframeNew().
frame = "https://example.com".iframeNew()
frame.iframeHide()
// the iframe is no longer drawn, but still loadedLast updated