jquery anchor code example
Example 1: go to anchor jquery
$('html,body').animate({ scrollTop: $("#anchor").offset().top }, 'slow');
Example 2: scroll jquery to anchor
$('html,body').animate({ scrollTop: $("#anchor").offset().top }, 'slow');
Example 3: how to get href value of anchor tag in jquery
<div class="getval">
<a href="https://wlearnsmart.com/">W learn Smart</a>
</div>
<script type="text/javascript">
$(document).ready(function() {
$('.getval a').click(function() {
event.preventDefault();
var get = $(this).attr('href');
alert(get);
console.log(get);
});
});
Example 4: click anchor tag using jquery
$(document).ready(function () {
$('#about')[0].click();
});