[ad_1]
There is no d property in your JSON, so you can simply access data[0].itemData. Try this:
$.each(data[0].itemData, function (index, element) {
console.log(element.Key);
})
[ad_2]
solved How to access JSON in JavaScript
[ad_1]
There is no d property in your JSON, so you can simply access data[0].itemData. Try this:
$.each(data[0].itemData, function (index, element) {
console.log(element.Key);
})
[ad_2]
solved How to access JSON in JavaScript