EduardET

mobile menu

Feb 6th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. ( function( $ ) {
  3.     $( document ).ready( function() {
  4.         setTimeout( function() {
  5.             $( '#mobile_menu li a' ).click( function() {
  6.                 $( '#mobile_menu li' ).removeClass( 'current-item' );
  7.                 $( this ).parent().addClass( 'current-item' );
  8.             } );
  9.         }, 100 )
  10.     } );
  11. } )( jQuery );
  12. </script>
Advertisement
Add Comment
Please, Sign In to add comment