Sto leggendo feed RSS e inserendo sia il titolo che il collegamento in un array in Jquery .
Quello che ho fatto è
var arr = [];
$.getJSON("displayjson.php",function(data){
$.each(data.news, function(i,news){
var title = news.title;
var link = news.link;
arr.push({title : link});
});
});
E sto leggendo di nuovo quell'array usando
$('#show').click(function(){
$.each(arr, function(index, value){
alert( index +' : '+value);
});
});
Ma mi dà output come
1:[Object Object]
2:[Object Object]
3:[Object Object]
come questo ...
Come posso ottenere sia il riquadro che il collegamento come coppia ( titolo come chiave e collegamento come valore )