How to parse following json object
{ "info": [ { "systemIp": "192.168.1.1", "status": "done 956" }, { "systemIp": "192.153.1.1", "status": "done" } ] }
In Javascript or jQuery can anybody help?
Output should be like
systemIp 192.168.1.1
status done
systemIp 192.153.1.1
status done