How can I get the array values return by a Json format in twitter. I've already know how to handle json format from yahoo and fb but, the json format returned by twitter is different with a callback function.
fb
my({
"data": [{
"name": "May Ann Salle",
"created_time": "2012-01-09T12:29:19+0000"
}]
});
my([
{
"recipient_screen_name": "1stone"
},
{
"recipient_screen_name": "2ndone"
}
]);
$.each(my, function(i, tw) {
disp += tw.recipient_screen_name;
});
alert(disp);
but I only get the 1st one, I'm unable to get the 2nd one of array.
my
?