function recentpostslist(json) {
document.write('<ul>');
for (var i = 0; i < json.feed.entry.length; i++)
{
for (var j = 0; j < json.feed.entry[i].link.length; j++) {
if (json.feed.entry[i].link[j].rel == 'alternate') {
break;
}
}
var entryUrl = "'" + json.feed.entry[i].link[j].href + "'";//bs
var entryTitle = json.feed.entry[i].title.$t;
var item = "<li>" + "<a href="+ entryUrl + '" target="_blank">' + entryTitle + "</a> </li>";
document.write(item);
}
document.write('</ul>');
}
</script>
<script src="http://johny-sompret.blogspot.com/feeds/posts/summary/-/health?max-results=6&alt=json-in-script&callback=recentpostslist"></script>
<a href="http://johny-sompret.blogspot.com/search/label/health" style="float:right;font:normal 10px Arial;padding:5px 0;">More Post »</a>
Posting Komentar