I have a problem assigning a value to a global variable and using it inside of a function. Here is my code:
var chartinfo = {"c0":"0", "c1":"0"}; // This is my global variable
$.getJSON("http://127.0.0.1:8080/chartinfo", function(json1){
chartinfo = json1; // I need to assign json1's value to chartinfo
});
$(function () {
$(document).ready(function() {
alert("external chartinfo " + chartinfo.c0.name); // I need to use chartinfo here