最終更新 1 month ago

修正履歴 f6cd06921df0940f38acb560e51a4bd20d642c43

disable_js_on_mobile.js Raw
1// method 1
2function isMobile() {
3return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
4}
5
6if (!isMobile()) {
7//place script you don't want to run on mobile here
8
9}
10
11
12// method 2
13if (window.matchMedia('(min-width: 768px)').matches) {
14//place script you don't want to run on mobile here
15}