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

# iframeGoto

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

## Description

`iframeGoto` moves an iframe to a position on screen, in the same coordinate space as the [draw cursor](/graphics-osl-window/rendering/draw-cursor.md). Pair it with [`.iframeResize()`](/legacy-osl-originos/networking/iframes/.iframeresize.md) to lay the embed out.

## Parameters

* `x`: the horizontal position to move the iframe to.
* `y`: the vertical position to move the iframe to.

## Usage

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

frame.iframeGoto(100, 50)
// positions the top-left of the iframe at (100, 50)
```
