I want to smoothly scroll down. I do not want to have to write a function for that - especially if jQuery already has one.
+7
A:
You can just use .animate()
the scrollTop
property, like this:
$("html, body").animate({ scrollTop: "300px" });
Nick Craver
2010-10-27 15:02:39