I've got this strange problem. In my code, I have a variable named val1 which gets a value after a jQuery call, but after exiting the jQuery function it loses its value.
Here's the code:
var val1;
$.getJSON('some address', null, function (result) {
val1 = result.names[0].name;
alert(val1); //first alert
});
alert(val1); // second alert
On first alert, I get the needed value, but on the second Alert - I get undefined.
Why?