how do i set a js global variable to a json result set in the onload event?
var global = [];
$.getJSON("<%: Url.Action("myUrl", "con") %>/",
function(data) {
$.each(data, function(key, val) {
global.push(val);
});
});
global does not have a value set on load, i need to access it outside the json call...
That code should work just fine. (Live copy) Sounds like there's a problem with the ajax call not returning the data in the form you expect.
You don't need to set global to an array. Just assign the value.
As @marc (indirectly) points, you have to understand the nature of the ajax call, and event model. The ajax call is executed as soon as the JS file is parsed, byt result is returned asynchronously. So, your code timeline would look like
This is a timeline, not the execution order. The time between the AJAX call and the response could be arbitrary, including the case of timeout or server-side error
So, what should you do?
1) the normal solurtion for JS - a callback, the success function you already have could either
1.1) set global and call the other function, or
1.2) do the desired actions with data
2) event - better if you suppose to use the data in multiple parts of the code, read for jQuery events mechanism
3) synchronous call, as @marc suggests - this should be avoided in 99% of cases. The only case I know when itt might be needed is when you have to requst for mandatory data from the 3rd party source, and even in this case you could do it on server (though at least synchronous AJAX is acceptable)
You again. Maybe try