/ Published in: jQuery
Smooth scrolling for internal links
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$('a[href^="#"]').bind('click.smoothscroll',function (e) { e.preventDefault(); var anchor = this.hash, $target = $(target); $('html, body').stop().animate({ 'scrollTop': $target.offset().top }, 500, 'swing', function () { window.location.hash = anchor; }); });
URL: http://imakewebthings.github.com/jquery-waypoints/