Declareer variabele buiten de functie ...
var oneVariable; function setVariable()( oneVariable = "Variable set from within a function!"; ) function getVariable()( alert(oneVariable); // Outputs "Variable set from within a function!" )
Of ... bevestig het aan het raamobject
function setValue() ( window.myValue = "test"; ) function getValue() ( alert(window.myValue); // "test" (assuming setValue has run) )