[Solved] How to append json array to value attribute


try this,

success: function(data) {
    var obj = $.parseJSON(data);
    console.log(obj[0]['title']);
    console.log(obj[0]['price']);
    //etc..
}

I hope this will work..

solved How to append json array to value attribute