Skip to content

Instantly share code, notes, and snippets.

@kovaldn
Created October 17, 2013 10:40
Show Gist options
  • Save kovaldn/7022747 to your computer and use it in GitHub Desktop.
Save kovaldn/7022747 to your computer and use it in GitHub Desktop.
Javascript: scrollto()
(function () {
jQuery('#top_menu li a').on('click', function(){
var item = $(this).parent().attr('class'),
tar = $(this).attr('data');
$("html, body").animate({ scrollTop: jQuery(tar).offset().top }, 1000);
});
})()
// <li class="item-0"><a href="#begin" data=".header1" class="root-item">В начало</a></li>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment