webview:load

Client

Fired when a webview finishes loading a page


Signal

"webview:load"

Arguments

TypeNameDescription
userdatawebviewThe webview instance triggering the event
stringurlThe URL that finished loading

Fires once the page has fully loaded.

  • Safe to interact with page content or send initial messages after this fires.

Example

Detect webview page load
util.event.on("webview:load", function(webview, url)
    core.engine.print("info", "Webview loaded:", url)
end)

On this page