i have this json response and i want to get the "term" of the "FirstTranslation" and "SecondTranslation" and "ThirdTranslation" and put them into variables in javascript, and if i want to get later l "POS"... how can i do it?
{
"term0" : {
"PrincipalTranslations" : {
"0" :{ "OriginalTerm" : { "term" : "classic", "POS" : "adj", "sense" : "standard, conventional", "usage" : ""}, "FirstTranslation" : {"term" : "classique", "POS" : "adj", "sense" : ""}, "SecondTranslation" : {"term" : "standard", "POS" : "adj", "sense" : ""}, "ThirdTranslation" : {"term" : "conventionnel, conventionnelle", "POS" : "adj", "sense" : ""}, "Note" : ""}, "1" :{ "OriginalTerm" : { "term" : "classic", "POS" : "n", "sense" : "book, etc: respected work", "usage" : ""}, "FirstTranslation" : {"term" : "classique", "POS" : "nm", "sense" : ""}, "Note" : ""},
data = JSON.parse(jsonString); data.term0.PrincipalTranslations["0"].OriginalTerm.term– Shmiddty Dec 18 '12 at 17:18