How do you parse HTML with a variety of languages and parsing libraries?
When answering:
Individual comments will be linked to in answers to questions
Language: JavaScript Library: DOM
var links = document.links; for(var i in links){ var href = links[i].href; if(href != null) console.debug(href); }
(using firebug console.debug for output...)