Quantcast
Channel: How to get last elements array in blogger feeds - Stack Overflow
Browsing all 3 articles
Browse latest View live

Answer by Bouh for How to get last elements array in blogger feeds

This code shows only the last entry in the array using arr.slice(-1), if you meant first element just remove .slice(-1) from the codefunction series(response) { if...

View Article



Answer by krishna for How to get last elements array in blogger feeds

function series(e) { var r, l = e.feed.entry[e.feed.entry.length - 1], n = l.title.$t; for (var i = 0; i < l.link.length; i++) { if ("replies" == l.link[i].rel && "text/html" ==...

View Article

How to get last elements array in blogger feeds

I'm trying to grab the data feed on my blog with the help of blogger json. I made it with the help of javascript to retrieve the data, but I was confused about displaying the last data in an array of...

View Article
Browsing all 3 articles
Browse latest View live




Latest Images