0

The default scrolling effect of all the browsers is jumpy. How can I give my website a nice and smooth scrolling effect with jquery?

Bob
  • 169
  • 1
  • 11
  • 1
    Please search before you ask. Duplicate of: http://stackoverflow.com/questions/14905779/jquery-vertical-mousewheel-smooth-scrolling – Patrick Allen Apr 20 '14 at 17:28

1 Answers1

1

The scrollTo plugin works pretty well.

$('#myElem').scrollTo('#someOtherElem', time, onfinishedcallback(){});

Here is a fiddle

J.Wells
  • 1,749
  • 12
  • 13