> 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/.iframehide.md).

# 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()`](/legacy-osl-originos/networking/iframes/.iframeshow.md). To remove it entirely use [`.iframeClose()`](/legacy-osl-originos/networking/iframes/.iframeclose.md).

## Parameters

`iframeHide` 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()
// the iframe is no longer drawn, but still loaded
```
