> For the complete documentation index, see [llms.txt](https://osl.mistium.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://osl.mistium.com/legacy-osl-originos/networking/iframes/.iframeshow.md).

# iframeShow

> ⚠️ **Not implemented in the current OSL CLI.**

## Description

`iframeShow` makes a hidden iframe visible again. It is the counterpart to [`.iframeHide()`](/legacy-osl-originos/networking/iframes/.iframehide.md).

## Parameters

`iframeShow` takes no parameters; it is called on an iframe id returned by [`.iframeNew()`](/legacy-osl-originos/networking/iframes/.iframenew.md).

## Usage

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

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