Answers for "scrollTop()"

13

scroll to element jquery

$('html, body').animate({
  scrollTop: $("#grepperRocks").offset().top
});
Posted by: Guest on March-18-2020
1

scrool to top jquerry

$("a[href='#top']").click(function() {
  $("html, body").animate({ scrollTop: 0 }, "slow");
  return false;
});
Posted by: Guest on August-20-2020
3

jquery get document scrolltop

var top = ($(window).scrollTop() || $("body").scrollTop());
Posted by: Guest on November-12-2020
0

body.scrollTop

body {
        height: 4000px;
        width: 4000px;
}
      
.main{
        position: fixed;
}
    
var myMain = document.getElementById('main');
var number = 0;

myMain.onclick = function () {
    
       'use strict;
    
        number += 100;
        window.scrollTo(0, number);
    
        console.log(window.scrollY);
    };
Posted by: Guest on June-01-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language