Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- ( function( $ ) {
- $( document ).ready( function() {
- var menuLink = $( '#top-menu .hash-item' );
- menuLink.removeClass( 'current-menu-item' );
- menuLink.each( function() {
- var link = $( this ).find( 'a' );
- link.click( function() {
- menuLink.removeClass( 'current-menu-item' );
- $( '#top-menu .menu-item' ).removeClass( 'current-menu-item' );
- $( this ).parent().addClass( 'current-menu-item' );
- } )
- } )
- } );
- } )( jQuery );
- </script>
Advertisement
Add Comment
Please, Sign In to add comment