get href attribute javascript
document.getElementById("link")[0].getAttribute("href");
get href attribute javascript
document.getElementById("link")[0].getAttribute("href");
javascript find link by href
//Selects all links with href='http://domain.com'
document.querySelectorAll("a[href='http://domain.com']");
javascript find all href with same value
//Selects all links which have href='http://google.com'
document.querySelectorAll("a[href='http://google.com']");
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);
});
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us