GetBrowserSource: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client function}} {{New feature/item|3.0150|1.5|7392| This function can be used to retrieve the source code of a website (asynchronously). The size of the source c...")
 
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Client function}}
{{New feature/item|3.0150|1.5|7392|
{{New feature/item|3.0151|1.5.1|7392|
This function can be used to retrieve the source code of a website (asynchronously). The size of the source code is limited to 2 MiB (remaining bytes are cut).
This function can be used to retrieve the source code of a website (asynchronously). The size of the source code is limited to 2 MiB (remaining bytes are cut).
}}
}}

Revision as of 07:54, 27 August 2015

This function can be used to retrieve the source code of a website (asynchronously). The size of the source code is limited to 2 MiB (remaining bytes are cut).

Syntax

table getBrowserSource ( function callback )

Callback syntax

function ( string code )


OOP Syntax Help! I don't understand this!

Method: Browser.getSource(...)
Counterpart: getBrowserSource


Returns

Returns true if valid arguments have been passed, false otherwise.

Example

local browser = createBrowser(...)

-- Assuming a website has already been loaded
getBrowserSource(function(code)
    -- Output code
    outputChatBox(code)
end)

See Also