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);
})
solved How to access JSON in JavaScript
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);
})
solved How to access JSON in JavaScript