I saw this answer dealing with getting data from JSON. I'm trying to do almost the same, but my JSON is structured differently as far as arrays/objects and I'm not sure how to parse it the same way.
My JSON is in this format and I'm trying to write a function to find certain elements based on the linked question, but without keys for the elements in the json, not sure how to target things. Or do I need to try and rework the out put of my json? (which is being created by json_encode from a modified codeigniter db query.
$(function() {
var json = [
{
"answer": [
"4555"
],
"answer_string": "4555|",
"qid": "70",
"aid": "742"
},
{
"answer": [
"monkeys",
"badgers",
"monkeybadgers"
],
"answer_string": "monkeys|badgers|monkeybadgers|",
"qid": "71",
"aid": "742"
}
];
$.each(json[], function(i, v) {
if (v.qid= "70") {
alert(v.answer[0]);
return;
}
});
});
I need to find answer[0] where qid matches a certain number.