Answers for "get href a javascript"

1

get href attribute javascript

document.getElementById("link")[0].getAttribute("href");
Posted by: Guest on March-07-2020
4

javascript find all href with same value

//Selects all links which have href='http://google.com'
document.querySelectorAll("a[href='http://google.com']");
Posted by: Guest on July-10-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language