Skip to content

Instantly share code, notes, and snippets.

@yastrS
Created October 9, 2015 15:30
Show Gist options
  • Save yastrS/b92ffb50ed99173d4a7d to your computer and use it in GitHub Desktop.
Save yastrS/b92ffb50ed99173d4a7d to your computer and use it in GitHub Desktop.
scroll-to-menu-id
$('#menu a').click(function() {
var isOpera = !!window.opera;
if (isOpera) {
var top = 'html';
} else {
var top = 'html, body';
}
var id = $(this).attr('href').replace('#', '');
var offset = $('#' + id).offset().top - 62;
$(top).animate({
scrollTop: offset
}, 1000);
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment