i am parsing an json string usin javascript
    {
      "head":   {
        "example": "0"
         },
      "res":   {
        "@test": "121",
        "@found": "5"
     }
}
i am getting the http response from the remote site and i am using javascript to extract the @found value .i used the below code .
 var json=eval('('+request.responseText+')');
        alert(json.head.res.@found);
gives me a null value can u please tell me how can i parse this.
 
     
     
     
     
     
     
    