Javascript – Is it possible to animate scrollTop with jQuery

javascriptjquery

I want to smoothly scroll down. I do not want to have to write a function for that – especially if jQuery already has one.

Best Answer

You can just use .animate() the scrollTop property, like this:

$("html, body").animate({ scrollTop: "300px" });