JS

From GiderosMobile
Revision as of 15:28, 13 July 2023 by Hgy29 (talk | contribs) (Text replacement - "<source" to "<syntaxhighlight")

Supported platforms: Platform html5.png
Available since: 2019.1

Description

Runs JavaScript code.

Example

Get/Set <syntaxhighlight lang="lua"> -- sets a variable and a listener JS.eval([[ document.isPause = false; document.addEventListener('visibilitychange', function() { if (document.visibilityState == 'hidden') document.isPause = true; else document.isPause = false; }); ]])

-- gets the value of a variable print(JS.eval("document.isPause")) </source>

Methods

JS.eval executes the given JavaScript code

Events

Constants