Hello it is possible to access the value of a JavaScript variable by name? Example:
var MyVariable = \"Value of variable\"; function readValue(name) {
Yes, you can do it like this:
var MyVariable = "Value of variable"; alert(window["MyVariable"]);