Skip to content

Instantly share code, notes, and snippets.

@eksana
Created June 27, 2017 06:46
Show Gist options
  • Save eksana/2836f8db597ba0959a05a33634405482 to your computer and use it in GitHub Desktop.
Save eksana/2836f8db597ba0959a05a33634405482 to your computer and use it in GitHub Desktop.
скролл к якорю
$(document).ready(function() {
$('a[href^="#"]').click(function () {
elementClick = $(this).attr("href");
destination = $(elementClick).offset().top;
if($.browser.safari){
$('body').animate( { scrollTop: destination }, 1100 );
}else{
$('html').animate( { scrollTop: destination }, 1100 );
}
return false;
});
});
//http://coding.dp.ua/jquery/1889-plavnyiy-perehod-k-yakoryu-iz-ssyilki.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment