본문 바로가기
jquery

반응형 a 태그 href #로 바꾸고 pc에서는 link 걸기

by 바나냥 2020. 6. 11.
	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;

댓글