$.getJSON("sluzba.json", function(result){
array = $.each(result, function(value){
return value;
});
tableMaker(array);
});
This is my code, I want to have an access to the array from outside the scope of this function.
Is it possible?
Please help...