GetBrowserSource

From Multi Theft Auto: Wiki
Revision as of 07:54, 27 August 2015 by Jusonex (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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