For the complete documentation index, see llms.txt. This page is also available as Markdown.

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().

Parameters

  • url: the new URL to load in the iframe.

Usage

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

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

Last updated