Estoy leyendo un feed RSS y presionando el título y el enlace en una matriz en Jquery .
Lo que hice es
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});
});
});
Y estoy leyendo esa matriz nuevamente usando
$('#show').click(function(){
$.each(arr, function(index, value){
alert( index +' : '+value);
});
});
Pero me da salida como
1:[Object Object]
2:[Object Object]
3:[Object Object]
Me gusta esto ...
¿Cómo puedo obtener el mosaico y el enlace como un par ( título como clave y enlace como valor )?