If you have the JavaScript in a browser widget "Browser1" for example,
1. how would you pass the parameters/variables a and b to the script
2. how would you get the value x back from the script
<!DOCTYPE html>
<html>
<body>
<p>A typical arithmetic operation takes two numbers (or variables) and produces a new number.</p>
<p id="demo"></p>
<script>
var a = 100;
var b = 50;
var x = a + b;
document.getElementById("demo").innerHTML = x;
</script>
</body>
</html>
Browser Widget JavaScript pass parameters
Moderators: Klaus, FourthWorld, heatherlaine, kevinmiller
Browser Widget JavaScript pass parameters
Andy Piddock
http://2108.co.uk/tinyide/ - Mini LC IDE alternative
http://2108.co.uk/script-editor-themer/ - Script Editor colour theming
http://livecodeshare.runrev.com/stack/897/LiveCode-Multi-Search - Search across 8 LC resources
http://2108.co.uk/tinyide/ - Mini LC IDE alternative
http://2108.co.uk/script-editor-themer/ - Script Editor colour theming
http://livecodeshare.runrev.com/stack/897/LiveCode-Multi-Search - Search across 8 LC resources