I've a little problem with a simple thing.I believe. this is my code...
I'm able to grab the first object element but I need all the data object, I guess I've to change something in this code line...
value[0]['firstName'];
I've a little problem with a simple thing.I believe. this is my code...
I'm able to grab the first object element but I need all the data object, I guess I've to change something in this code line...
value[0]['firstName'];
You need to replace
value[0]['firstName']; // $.each()
With
value[index]['firstName']; // $.each()
And
$.each(oggprova.PIANIFI,function(){...});
with
$.each(oggprova.PIANIFI.gennio,function(){....});