반응형
select 모양의 div menu 작업 시 사용
select를 클릭하면 해당 옵션 외 다른 옵션창 닫힘
해당 select 한번 더 클릭하면 해당 옵션도 닫힘
not($(this))로 제어가능
$('.on').on('click, touchstart', function(){
$('.on').not($(this)).removeClass('on');
$(this).toggleClass('on')
})
반응형
'퍼블리셔 > jquery' 카테고리의 다른 글
class를 활용해 popup 여러개 컨트롤하기 (0) | 2022.01.27 |
---|---|
이미지 파일 업로드/프리뷰/삭제/드래그로 위치변경 (0) | 2021.05.12 |
touchmove로 touchstart 제어하기 (0) | 2020.12.03 |
input[type="file] custom (0) | 2020.09.25 |
input[type="text"] 숫자만 입력 (0) | 2020.04.06 |