Answers for "how to select a section id when scrolling in jquery"

2

jquery scroll to id

$('html, body').animate(
    {
      scrollTop: $($(this).attr('href')).offset().top,
    },
    500,
    'linear'
  )
Posted by: Guest on January-29-2020
0

javascript go to div id

//slowScroll
function scroll() {
    $('html, body').animate({
        scrollTop: $("#divName").offset().top
    }, 2000)};

window.onload = scroll;
Posted by: Guest on June-17-2020

Code answers related to "how to select a section id when scrolling in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language