This may sound a newbie question but I'm having really hard time with variable scopes in Javascript.
I have the following JS snippet:
<script>
window.IDFVPlugin.getIdentifier(function(result){ uuid = result; });
alert(uuid);
</script>
I want to use the variable uuid
anywhere in the script outside the window
object. uuid
returns the correct value only when inside the object and the value is lost when outside. So the alert above will log an undefined variable error.