OnClientBrowserDocumentReady: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 12: Line 12:


==Source==
==Source==
The [[Element/Browser||browser]] element
The [[Element/Browser|browser]] element


==Example==  
==Example==  

Revision as of 16:18, 26 May 2015

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 ( "#FFFC00The page"  .. url ..  "has been successfully loaded." ) 
	end 
)

See Also