webview:load
Client
Fired when a webview finishes loading a page
Signal
"webview:load"Arguments
| Type | Name | Description |
|---|---|---|
userdata | webview | The webview instance triggering the event |
string | url | The 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
util.event.on("webview:load", function(webview, url)
core.engine.print("info", "Webview loaded:", url)
end)