$( function() { $(".mobile-icon").click(function() { if($(".mobile-nav").is(":visible")) { // Hide $(".mobile-nav").fadeOut() } else { // Show $(".mobile-nav").fadeIn() } }) $(".close-icon").click(function() { $(".mobile-nav").fadeOut() }) $(".ui-accordion-header a").click(function() { window.location = $(this).attr('href') return false }); // change sub nav color if($(".sub-nav-item a[href*='" + location.pathname + "']").length > 1) { $(".sub-nav-item a[href*='" + location.pathname + "']").first().addClass("current") } else { $(".sub-nav-item a[href*='" + location.pathname + "']").addClass("current") } var responsive = getResponsive() if(responsive == "desktop") { $(".drawer-item.mobile-item").hide() } }) function getResponsive() { var responsive = "" if(window.innerWidth <= 414) { responsive = "mobile" } else if(window.innerWidth > 414 && window.innerWidth <= 1024) { responsive = "tablet" } else { responsive = "desktop" } return responsive }