Run Javascript
From UBot Studio
(Difference between revisions)
(Created page with "This command runs javascript code. Run Javascript is a Browser Command. == Example == <pre> run javascript("document.write(\"Hello Dolly!\");") </pre> ...") |
|||
| (3 intermediate revisions by one user not shown) | |||
| Line 1: | Line 1: | ||
This command runs javascript code. | This command runs javascript code. | ||
| + | |||
Run Javascript is a [[Browser Commands|Browser Command]]. | Run Javascript is a [[Browser Commands|Browser Command]]. | ||
| − | == Example == | + | '''Javascript:''' Where the desired Javascript is pasted for the purpose of running within the main browser. |
| + | |||
| + | |||
| + | == Example 1 == | ||
<pre> | <pre> | ||
run javascript("document.write(\"Hello Dolly!\");") | run javascript("document.write(\"Hello Dolly!\");") | ||
| + | |||
</pre> | </pre> | ||
| + | |||
| + | |||
Running the script will run the javascript code. In this example, the code simply places "Hello Dolly" into the main browser. | Running the script will run the javascript code. In this example, the code simply places "Hello Dolly" into the main browser. | ||
| − | [[File:runjavascript. | + | |
| + | |||
| + | [[File:runjavascript.jpg]] | ||
| + | |||
| + | |||
| + | |||
| + | == Example 2 == | ||
| + | |||
| + | This example will use javascript to calculate the quotient of two values set to variables. | ||
| + | |||
| + | The result is then displayed in the browser. | ||
| + | |||
| + | <pre> | ||
| + | set(#one, 45562849, "Global") | ||
| + | set(#two, 50, "Global") | ||
| + | run javascript("document.write({#one} *{#two} )") | ||
| + | </pre> | ||
| + | |||
| + | [[File:javascript.jpg]] | ||
Latest revision as of 11:58, 17 February 2014
This command runs javascript code.
Run Javascript is a Browser Command.
Javascript: Where the desired Javascript is pasted for the purpose of running within the main browser.
[edit] Example 1
run javascript("document.write(\"Hello Dolly!\");")
Running the script will run the javascript code. In this example, the code simply places "Hello Dolly" into the main browser.
[edit] Example 2
This example will use javascript to calculate the quotient of two values set to variables.
The result is then displayed in the browser.
set(#one, 45562849, "Global")
set(#two, 50, "Global")
run javascript("document.write({#one} *{#two} )")

