I am new to Jquery. I am calling a Struts 2 action which return a Json object. I dont understand how actually .each function works in Jquery.
Can you please explain how can I use the variable data, in a complex json using jquery.
{
    "od": {
        "cwd": [
            {
                "batchCount": 140,
                "batchId": "2121",
                "countryName": "Mexico",
                "processId": "210002",
                "status": "F",
                "timeRequired": 140
            },
            {
                "batchCount": 140,
                "batchId": "8259",
                "countryName": "Japan",
                "processId": "220002",
                "status": "F",
                "timeRequired": 140
            }           
        ],
        "percentageCompleted": 100,
        "remainingTime": "-104Hours -4Mins",
        "successBatchCount": 0,
        "totalBatchCount": 920
    },
    "processDateInput": "19/11/2014" }
So here is what I wanted to know that if json data is parsed into var obj,
Can cwd be accessed by :
var cwd = result.od.cwd;
$.each(cwd, fuction(index, value)){
var batchcount = value.batchcount;
});
and likewise can we parse any json string in jquery.
Thanks and regards, Tushar
 
    