jQuery(function ($) { 'use strict'; var $window = $(window); var $body = $('body'); /* ----------------------------------------- Responsive Menus ----------------------------------------- */ var $mainNav = $(".navigation-main"); var $mobileNav = $( '.navigation-mobile-wrap' ); var $mobileNavTrigger = $('.mobile-nav-trigger'); var $mobileNavDismiss = $('.navigation-mobile-dismiss'); $mainNav.each( function () { var $this = $( this ); $this.clone() .find('> li') .removeAttr( 'id' ) .appendTo( $mobileNav.find( '.navigation-mobile' ) ); } ); $mobileNav.find( 'li' ) .each(function () { var $this = $(this); $this.removeAttr( 'id' ); if ( $this.find('.sub-menu').length > 0 ) { var $button = $( '