검색결과 리스트
글
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
<html>
<body>
<div id="container">
</div>
</body>
</html>
// 막기
$('#container').on('scroll touchmove mousewheel', function(event) {
event.preventDefault();
event.stopPropagation();
return false;
});
// 풀기
$('#container').off('scroll touchmove mousewheel');
'-- JQuery' 카테고리의 다른 글
monthpicker 이용 시 미래의 월(month) 비활성화하기 (0) | 2020.10.22 |
---|---|
javascript promise code style (0) | 2017.03.22 |
$.each 메소드 사용시 break, continue 사용 (0) | 2017.01.24 |
JQuery data() (0) | 2015.11.16 |
ajax로 업로드 시 file객체 처리 (0) | 2015.05.11 |
RECENT COMMENT