ios safari chrome 에서 스크롤 터치 막기
// Disable scroll
function disableScroll(){
$('#wrapper').on('scroll touchmove mousewheel', function(e){
e.preventDefault();
e.stopPropagation();
return false;
});
}
// Enable scroll
function enableScroll(){
$('#wrapper').off('scroll touchmove mousewheel');
}