|
1 2 3 4 5 6 7 8 |
$(function() { $('a[href^="#"]').click(function () { elementClick = $(this).attr("href"); destination = $(elementClick).offset().top; $('body, html').animate( { scrollTop: destination }, 1100 ); return false; }); }); |