iframeShow
Last updated
⚠️ Not implemented in the current OSL CLI.
iframeShow makes a hidden iframe visible again. It is the counterpart to .iframeHide().
iframeShow takes no parameters; it is called on an iframe id returned by .iframeNew().
frame = "https://example.com".iframeNew()
frame.iframeHide()
// ... later ...
frame.iframeShow()
// the iframe is visible againLast updated