$('body').bind('touchmove', function(e){e.preventDefault()}); //스크롤 않되게 하는 태그
$(''body').unbind('touchmove'); //스크롤을 않되게 하던걸 다시 되게 해주는 태그
응용방법...
function slideaction(fn){
if (fn == "open")
{
$("#slidewindow").animate({right:"0px"},{queue:false, duration:300});
$("#wrap_bg").fadeIn();
$('#wrap_bg').bind('touchmove', function(e){e.preventDefault()});
$('body').bind('touchmove', function(e){e.preventDefault()});
$('#slidewindow').unbind('touchmove');
$('#wrap').css({"height":"580px"});
}
else{
$("#slidewindow").animate({right:"-100%"},{queue:false, duration:300});
$("#wrap_bg").fadeOut();
$('body').unbind('touchmove');
$('#wrap').css({"height":"100%"});
}
}
사용할땐 아라서 생각해서 쓰자,...