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