Retrieve list of all labels in blogger - Pretag
How to list recent post titles by labeljavascript - retrieve list of all labels in blogger - Stack Overflow
List of labels cointains special character in sidebar (Blogger) - Stack Overflow
xml - How to hide all post's having certain labels on home page in Google Blogger? - Stack Overflow
How can I make all posts with a given label show in a LIST (not full posts) when clicking a label? - Blogger Community
Too Clever By Half: List all posts in a topic
Blogger Blog: List Posts By Label » Musings of an IT Implementor
Subscribe to this feed
<script>
function cat(json){ //get categories of blog & sort them
var label = json.feed.category;
var lst=[];
for (i=0; i<label.length; i++){
lst[i] = label[i].term ;
}
alert(lst.sort()); //use any sort if you need that
}
</script>
<script src="http://cnetscandal.com/feeds/posts/summary?alt=json&max-results=0&callback=cat"></script>