RonnyRules
RonnyRules

Reputation: 370

how to Scroll to the end of a div in a single scroll

I have a div with 100% height of the screen and i want it to scroll like this website. One little scroll should take me to the end of a division.

$('html, body').animate({
scrollTop: $("#target-element").offset().top
}, 1000);

I was using this code but its not working. Help

Upvotes: 1

Views: 130

Answers (1)

Bla...
Bla...

Reputation: 7288

This code should works:

$( "body" ).scroll(function() {
    $('html, body').animate({
        scrollTop: $("#target-element").offset().top
    }, 1000);
});

Upvotes: 3

Related Questions