Estou lendo RSS feed e colocando Título e Link em um Array no Jquery .
O que eu fiz foi
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 estou lendo essa matriz novamente usando
$('#show').click(function(){
$.each(arr, function(index, value){
alert( index +' : '+value);
});
});
Mas está me dando saída como
1:[Object Object]
2:[Object Object]
3:[Object Object]
como isso ...
Como posso obter o bloco e o link como um par ( título como chave e link como valor )