Answers for "scroll down to div jquery"

2

jquery scroll to id

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

jquery scroll to specific div

/* HTML LAYOUT */
<div class="my-div" id="login-section"></div>
/* JQUERY Code*/
$(".my-menu-link").click(function () {
  $("html, body").animate({
    scrollTop: $("#" + $(this).attr("id")).offset().top
  }, 500) /* 500 milliseconds*/
  /*
    Hint:
    $("#" + $(this).attr("id")) => #login-section
    so that html will scroll to #login-section which is our specific div
  */
})
Posted by: Guest on June-17-2021
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 "Javascript"

Browse Popular Code Answers by Language