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

# iframeRedirect

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

## Description

`iframeRedirect` loads a different URL into an existing iframe, reusing the same embed instead of creating a new one with [`.iframeNew()`](/legacy-osl-originos/networking/iframes/.iframenew.md).

## Parameters

* `url`: the new URL to load in the iframe.

## Usage

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

frame.iframeRedirect("https://example.org")
// the same iframe now shows a different page
```
