EduardET

Untitled

May 28th, 2018
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. ( function( $ ) {
  3.  
  4.     $( window ).on( 'scroll', function() {
  5.         $( '.et_pb_section' ).each( function() {
  6.             if ( $( window ).scrollTop() >= $( this ).offset().top - $( '#main-header' ).height() ) {
  7.                 var id = $( this ).attr( 'id' );
  8.                 $( '#top-menu .menu-item > a' ).parent().removeClass( 'current-item' );
  9.                 $( '#top-menu .menu-item > a[href="#' + id + '"]' ).parent().addClass( 'current-item' );
  10.                 console.log( $( '#top-menu .menu-item > a[href="#' + id + '"]' ).parent() )
  11.             }
  12.         } );
  13.     } );
  14.  
  15. } )( jQuery );
  16. </script>
Advertisement
Add Comment
Please, Sign In to add comment