$(".qm-nav").find("li").each(function(){ if( $(this).find("a").length>1 ){ $(this).addClass("exist") } }); var screen_width = window.screen.width; if (screen_width>1000) { jQuery(".qm-nav").slide({ type:"menu", titCell:".nl", targetCell:".sub",effect:"slideDown",delayTime:300,triggerTime:0,returnDefault:true }); }else{ $(".exist").click(function(){ $(this).toggleClass("onn"); $(this).find(".sub").slideToggle("slow"); }); }; $(".qm-top .box").hover(function(){ $(".qm-top").addClass("hoverbox"); },function(){ $(".qm-top").removeClass("hoverbox"); }); $(".m-nav,.qm-nav .alink").click(function () { $(".qm-top").toggleClass("block");$("body").toggleClass("ow"); }); $(window).scroll(function(e){ s=$(document).scrollTop(); if(s>40){ $(".qm-top").addClass("flexbox"); }else{ $(".qm-top").removeClass("flexbox"); } })