Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- ( function( $ ) {
- $( window ).on( 'scroll', function() {
- $( '.et_pb_section' ).each( function() {
- if ( $( window ).scrollTop() >= $( this ).offset().top - $( '#main-header' ).height() ) {
- var id = $( this ).attr( 'id' );
- $( '#top-menu .menu-item > a' ).parent().removeClass( 'current-item' );
- $( '#top-menu .menu-item > a[href="#' + id + '"]' ).parent().addClass( 'current-item' );
- console.log( $( '#top-menu .menu-item > a[href="#' + id + '"]' ).parent() )
- }
- } );
- } );
- } )( jQuery );
- </script>
Advertisement
Add Comment
Please, Sign In to add comment