Preventing body scroll for modals in iOS --- ISO 모달 팝업 떴을 때 바디 스크롤 막기

모달창이 보여졌을때, 다시 숨겨졌을때 각각 아래 소스를 넣어주면 된다.
1
2
3
4
5
6
7
8
9
// when modal show
$('body').on('touchmove scroll',function(e) {
  e.preventDefault();
});
   
// when modal hide 
$('body').off('touchmove scroll',function(e) {
  e.preventDefault();
});
cs

댓글

☆ 잉기 ★

[Swiper] 특정 슬라이드로 이동하기

[javascript] Combining Two Selected Nodes In One --- 자바스크립트, 변수로 지정한 셀렉터(노드) 한꺼번에 선택하기