Answers for "jquery anchor"

2

scroll jquery to anchor

$('html,body').animate({ scrollTop: $("#anchor").offset().top }, 'slow');
Posted by: Guest on June-12-2020
4

go to anchor jquery

$('html,body').animate({ scrollTop: $("#anchor").offset().top }, 'slow');
Posted by: Guest on June-03-2020
0

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);    
  });  

});
Posted by: Guest on July-18-2020
0

click anchor tag using jquery

$(document).ready(function () {
    $('#about')[0].click();  //$('#about').get(0).click();
});
Posted by: Guest on September-28-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language