This line:
alert("<b>feeds.entries["+j+"] is </b>=>"+feeds.entries[j]+"<br>");
gives this result:
<b>feeds.entries[0] is </b>=>[object Object]<br>
I would like to print the list of objects so that I can use them.
This array is being called as such:
var entry=feeds.entries[i];
and entry.title, prints the title of the image. I guessed at "title", and would like to see all the other objects feeds.entries[] contains, but my alert above, prints "[object Object]". The script is zRSSFeed which is an RSS parser. I'm trying to parse a Menalto Gallery 2 (or g2) RSS feed.