LoginSignup
17
18

More than 5 years have passed since last update.

スマホでタッチによるスクロール操作を無効化する

Last updated at Posted at 2014-01-15
// 禁止
$('#hoge').on('touchmove.noScroll', function(e) {
    e.preventDefault();
});
// 解除
$('#hoge').off('.noScroll');
17
18
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
17
18