jQuery(document).ready(function($) { /*------------------------------------------------ DECLARATIONS ------------------------------------------------*/ var loader = $('#loader'); var loader_container = $('#preloader'); var scroll = $(window).scrollTop(); var scrollup = $('.backtotop'); var dropdown_toggle = $('.main-navigation button.dropdown-toggle'); var primary_menu_toggle = $('#masthead .menu-toggle'); var primary_nav_menu = $('#masthead .main-navigation'); /*------------------------------------------------ PRELOADER ------------------------------------------------*/ loader_container.delay(1000).fadeOut(); loader.delay(1000).fadeOut("slow"); /*------------------------------------------------ BACK TO TOP ------------------------------------------------*/ $(window).scroll(function() { if ($(this).scrollTop() > 1) { scrollup.css({bottom:"25px"}); } else { scrollup.css({bottom:"-100px"}); } }); scrollup.click(function() { $('html, body').animate({scrollTop: '0px'}, 800); return false; }); /*------------------------------------------------ NAVIGATION ------------------------------------------------*/ primary_menu_toggle.click(function(){ primary_nav_menu.slideToggle(); $(this).toggleClass('active'); $('.menu-overlay').toggleClass('active'); $('#masthead .main-navigation').toggleClass('menu-open'); }); dropdown_toggle.click(function() { $(this).toggleClass('active'); $(this).parent().find('.sub-menu').first().slideToggle(); $('#primary-menu > li:last-child button.active').unbind('keydown') }); $("#masthead .search-menu > a").click(function(event){ event.preventDefault(); $(this).toggleClass('search-active'); $('#masthead #search').fadeToggle(); $('#masthead .search-field').focus(); }); $('#masthead #search').find("button").bind( 'keydown', function(e) { var tabKey = e.keyCode === 9; if( tabKey ) { e.preventDefault(); $('#masthead #search').hide(); $('#masthead .search-menu > a').removeClass('search-active'); $('#masthead .search-menu').removeClass('active').focus(); $('#masthead .search-menu > a').focus(); } }); $('#masthead #search').find("input").bind( 'keydown', function(e) { var tabKey = e.keyCode === 9; var shiftKey = e.shiftKey; if( shiftKey && tabKey ) { e.preventDefault(); $('#masthead #search').hide(); $('#masthead .search-menu > a').focus(); $('#masthead .search-menu > a').removeClass('search-active'); $('#masthead .search-menu').addClass('active'); } }); /*-------------------------------------------------------------- Keyboard Navigation ----------------------------------------------------------------*/ if( $(window).width() < 1024 ) { $('#primary-menu').find("li").last().bind( 'keydown', function(e) { if( e.which === 9 ) { e.preventDefault(); $('#masthead').find('.menu-toggle').focus(); } }); $('#primary-menu > li:last-child button:not(.active)').bind( 'keydown', function(e) { if( e.which === 9 ) { e.preventDefault(); $('#masthead').find('.menu-toggle').focus(); } }); } else { $('#primary-menu').find("li").unbind('keydown'); } $(window).resize(function() { if( $(window).width() < 1024 ) { $('#primary-menu').find("li").last().bind( 'keydown', function(e) { if( e.which === 9 ) { e.preventDefault(); $('#masthead').find('.menu-toggle').focus(); } }); $('#primary-menu > li:last-child button:not(.active)').bind( 'keydown', function(e) { if( e.which === 9 ) { e.preventDefault(); $('#masthead').find('.menu-toggle').focus(); } }); } else { $('#primary-menu').find("li").unbind('keydown'); } }); primary_menu_toggle.on('keydown', function (e) { var tabKey = e.keyCode === 9; var shiftKey = e.shiftKey; if( primary_menu_toggle.hasClass('active') ) { if ( shiftKey && tabKey ) { e.preventDefault(); primary_nav_menu.slideUp(); $('.main-navigation').removeClass('menu-open'); $('.menu-overlay').removeClass('active'); primary_menu_toggle.removeClass('active'); }; } }); /*------------------------------------------------ END JQUERY ------------------------------------------------*/ });