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...