I have excel sheet which i need to build the json file. i have build a sample file. but i am unable to proceed with that json file and extract the data from it.
[{
"Material thickness": "10 Mil",
"Width": 8,
"height": 8,
"Price": "8.76",
"Quantity":1
},
{
"Material thickness": "7 Mil",
"Width": 8,
"height": 12,
"Price": "10.52",
"Quantity":1
}
]
jQuery.getJSON( siteURL+"/prices.json", function( data ) {
jQuery.each(data, function (index, value) {
console.log(index);
console.log(value);
console.log(data[index].Material thickness);
});
});