/ Published in: jQuery
Expand |
Embed | Plain Text
/* Smooth Scroll ========================================== */ $(function(){ $('a[href^=#]:not(a[href$=#]):not(#topInformation ul.navi li a)').click(function(){ var href= this.hash; var $target = $(href == '#_top' ? 'body' : href); if($target.size()){ var top = $target.offset().top; $($.browser.safari ? 'body' : 'html').animate({scrollTop:top}, 500, 'swing'); } return false; }); });
You need to login to post a comment.
