Created
June 19, 2017 13:00
-
-
Save keks55/156ea817ee2e12b67c3dd5ca2a4e29d0 to your computer and use it in GitHub Desktop.
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
//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