Advertisement
itskrystalized

navigation menu 05# >>javascript

Jul 1st, 2015
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript">
  2. $(document).ready(function() {
  3. var stickyNavTop = $('.nav').offset().top;
  4.  
  5. var stickyNav = function(){
  6. var scrollTop = $(window).scrollTop();
  7.       
  8. if (scrollTop > stickyNavTop) {
  9.     $('.nav').addClass('sticky');
  10. } else {
  11.     $('.nav').removeClass('sticky');
  12. }
  13. };
  14.  
  15. stickyNav();
  16.  
  17. $(window).scroll(function() {
  18.     stickyNav();
  19. });
  20. });
  21. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement