[Solved] How to read this table/Json [closed]


Try something like:

$.getJSON("path/to/your/file.json", function(data) {
    for(i=0; i<data.length; i++) {
        console.log(data[i].id);    
    }
}

solved How to read this table/Json [closed]