After reading some questions here, I still have difficulty on making a loop through my JSON results. Here they are:
{
"data": {
"posts": [
{
"Post": {
"id": "1",
"user_id": "1",
"title": "Test Content",
"created": "2011-06-30"
}
},
{
"Post": {
"id": "2",
"user_id": "2",
"title": "New Test Content",
"created": "2011-06-30"
}
}
]
}
}
How can I get Post.title using $.each() ?