Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script type="text/javascript">
- $(document).ready(function() {
- var stickyNavTop = $('.nav').offset().top;
- var stickyNav = function(){
- var scrollTop = $(window).scrollTop();
- if (scrollTop > stickyNavTop) {
- $('.nav').addClass('sticky');
- } else {
- $('.nav').removeClass('sticky');
- }
- };
- stickyNav();
- $(window).scroll(function() {
- stickyNav();
- });
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement