I want to array my $.getJSON values outside of the $.getJSON. Here is the code:
$.getJSON("www.someurl.com/", function(results){
value = results;
});
document.write(value);
I want to write my value outside of the $.getJSON. How can I array my value?