var custom = { /* ** Industry drop-down Function **/ IndustryDropDown: function () { jQuery('.industry__menu-select').click(function (e) { e.preventDefault(); e.stopPropagation(); if(jQuery(window).width() < 768){ if(jQuery(this).parent().hasClass('open')) { jQuery(this).next().slideUp(); jQuery('.welcome-section__text').fadeIn('slow'); jQuery(this).parent().removeClass('open') } else { jQuery(this).next().slideDown(); jQuery('.welcome-section__text').hide(); jQuery(this).parent().addClass('open') } }else{ jQuery(this).parent().toggleClass('open') if(jQuery(this).parent().hasClass('open')) { jQuery(this).next().slideToggle(); } else { jQuery(this).next().slideToggle(); } } }); jQuery('.industry__menu-dropdown a').click(function (e) { e.preventDefault(); jQuery('.industry__menu-dropdown a').removeClass('selected'); jQuery(this).addClass('selected'); jQuery(this).parents('.industry__menu').addClass('animation-stop'); window.location.href = jQuery(this).attr('href'); }); jQuery(document).click(function(e){ if(jQuery(e.target).parents('.industry__menu-dropdown').length == 0){ jQuery('.industry__menu-select').next().slideUp(); } }); }, /* ** init Function **/ init: function() { custom.IndustryDropDown(); }, }; jQuery(document).ready(function() { custom.init(); });