onClientBrowserDocumentReady | Multi Theft Auto: Wiki Skip to content

onClientBrowserDocumentReady

Client-side
Server-side
Shared

This event is executed after the web page has been loaded successfully.

Parameters

string url
  • url: the url of the web page loaded.

Source

element: The browser element.

Code Examples

client
addEventHandler ( "onClientBrowserDocumentReady" , root ,
function ( url )
outputChatBox ( "The page '" .. url .. "' has been successfully loaded.")
end
)