How to parse the following JSON Array using javascript??
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
Your code for parsing JSON with jQuery is valid and should work:
Now you can iterate through array using
And if you want to parse data from AJAX you don't need $.parseJSON. It' already parsed:
|
|||||||
|
|
I usually use the JSON lib for JavaScript: https://github.com/douglascrockford/JSON-js Just download json2.js and include in your page, then call JSON.parse like following: var text = '{"Status":"True","Data":[{"Loginstatus":"Success","agentid":1004}]}'; var myObject = JSON.parse(text); |
|||
|
|

urlvariable. It's already parsed by jQuery because of settingdataType: 'json'. – Inferpse Oct 8 '12 at 10:08eval(), like this:var obj = eval("(" + myjson + ")");– ijse Oct 16 '12 at 4:31