I have a JSON object that looks similar to
{
"mydata":[
"one",
"two",
"three"
],
"outside":[
{
"vals":["four", "five", "six"],
"soso":{"seven", "eight", "nine"]
},
{
"vals":["four", "five", "six"],
"soso":{"seven", "eight", "nine"]
},
{
"vals":["four", "five", "six"],
"soso":{"seven", "eight", "nine"]
},
]
"inside":[]
and I am trying to with jquery run $.each on “outside” so I can get each vals set of values from “outside” and im not getting anything but am failing misserably ive given up hoping someone can assist
Within
outsideobjectsososhould look like this"soso":["seven", "eight", "nine"]and then