vbvt,
Может так?
var siteURL = "http://" + top.location.host.toString();
var $internalLinks = $("a[href^='"+siteURL+"'], a[href^='/'], a[href^='./'], a[href^='../'], a[href^='#']");
$(document.body).append(
$internalLinks
.map(function(){
return this.href
})
.join('<br>')
)