views:

49

answers:

2

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
+2  A: 

Try the scrollTo plugin.

Tatu Ulmanen