Skip to content

Instantly share code, notes, and snippets.

@keks55
Created June 19, 2017 13:00
Show Gist options
  • Save keks55/156ea817ee2e12b67c3dd5ca2a4e29d0 to your computer and use it in GitHub Desktop.
Save keks55/156ea817ee2e12b67c3dd5ca2a4e29d0 to your computer and use it in GitHub Desktop.
//jQuery for page scrolling feature
$(function() {
$('.nav li a').on('click', function(event) {
$('html, body').stop().animate({
scrollTop: $($(this).attr('href')).offset().top
}, 900);
if ($(window).width() < 769) {
$(".nav").slideToggle("fast");
}
event.preventDefault();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment