if (window_width > 1200) {
...
$(this).find(".menu_top").not(".view1200").show();
}else{
$(".nav .nav_m .menu").each(function(){
$(this).find(".menu_top").clone().addClass("view1200").prependTo($(this)).attr("href","#");
$(this).find(".menu_top").not(".view1200").hide();
});
}
//.menu_top 하나 더 생성한 후 href를 #로 변경하고 기존 .menu_top은 숨김
//.view1200 은 css를 통해 1200 이상일 때 display:none;
'jquery' 카테고리의 다른 글
mouseenter animation + css z-index (0) | 2020.06.25 |
---|---|
checkbox 전체 선택 / 개별 해제시 전체 해제 (0) | 2020.06.17 |
[bxslider.js] li가 1개일 때 selector 제거 (0) | 2020.06.03 |
append로 추가한 요소에 function 넣기 (0) | 2020.05.25 |
[fullpage.js] 반응형 width 이하에서 깨기 (2) | 2020.04.15 |
댓글