how to get href javascript code example
Example 1: get href attribute javascript
document.getElementById("link")[0].getAttribute("href");
Example 2: javascript find link by href
//Selects all links with href='http://domain.com'
document.querySelectorAll("a[href='http://domain.com']");