Answers for "javascript get anchor href"

1

get href attribute javascript

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

javascript find link by href

//Selects all links with href='http://domain.com'
document.querySelectorAll("a[href='http://domain.com']");
Posted by: Guest on May-15-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
0

how to get href value of anchor tag in jquery in list

<ul class="sub_menu">
    <li><a href="caps">Caps</a></li>
    <li><a href="jeans">Jeans</a></li>
    <li><a href="shorts">Shorts</a></li>
    <li><a href="foootwear">Footwear</a></li>
</ul>


$('ul.sub_menu li a').click(function() {
    event.preventDefault();
    var txt = $(this).attr('href');
    alert(txt);    
});
Posted by: Guest on May-08-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language