SO - 19969751

by survivant

CSS

body {
    height: 800px;
}

JavaScript

var json = [{"idSimRequete":46,"hits":2,"keywordSet":[]},{"idSimRequete":45,"hits":12,"keywordSet":[5,6]}];

$.each(json, function (key, data) {
    console.log("line [" + key + "]")
    $.each(data, function (index, data2) {
        console.log('    item', index  + "  value=" + data2)
        $.each(data2, function (index3, data3) {
            console.log('          item', index3  + "  value=" + data3)
        })
    })
    
})