Created
May 27, 2015 18:59
-
-
Save Solomko2/4320a8c73df9ab60063c to your computer and use it in GitHub Desktop.
Scroll To.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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