I have JSON data like this
{
"srno": 1234567890,
"datetime": "MM-dd-yyyy HH:mm",
"meters": [
{
"mid": 63,
"phase":1,
"v": 1234,
"c": 5678,
"kw": 2348,
"kwh": 2342,
"okda" : 1,
"poca" : 1
},
{
"mid": 62,
"phase":2,
"v": 1234,
"c": 5678,
"kw": 2348,
"kwh": 2342,
"okda" : 1,
"poca" : 3
}
]
}
All I want to do is draw this data on my web page. Please help me. JQuery for this can be made from this link
https://jsfiddle.net/93ttkjr4/
I want this data to be populated on my web page.
source
share