html get href code example
Example 1: get href attribute javascript
document.getElementById("link")[0].getAttribute("href");
Example 2: get all href from html
var arr = [], l = document.links;
for(var i=0; i<l.length; i++) {
arr.push(l[i].href);
}