OnClientBrowserDocumentReady

From Multi Theft Auto: Wiki
Revision as of 13:53, 11 January 2017 by Haha (talk | contribs) (Undo revision 50309 by Tofik (talk))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

Parameters

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

Source

The browser element.

Example

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

See Also