터치UI webbrowser Zoom액션 막기
2013년 11월 29일 금요일
html { -ms-touch-action: pan-x pan-y; }
html { -ms-touch-action:none; }
html, \*, body, div, table { -ms-touch-action:none !important; }
\-ms-content-zooming: none;
@-ms-viewport { min-zoom: 1; max-zoom: 1; user-zoom: fixed; }
_in script_
document.body.setAttribute("style","-ms-touch-action: none;");
그외