0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

jQueryで$(window).on (‘load’)関数が動作しない時の対処

Last updated at Posted at 2021-10-09

###現象
jQueryで $(window).on('load scroll', function () {
console.log('check');
});を機能させたい。
検証ツールに貼り付けてみたが、認識されなかった。

###試したこと
他のページで検証したら正常に発火したため、自分のページのみで生じている問題だと判断しました。

###解決方法
シングルページアプリケーションを導入するため、body直下に以下のスタイルを適用していました。
どうやら、このoverflow:autoが悪さをしているようで、削除すれば解決しました。

body > div{
overflow:auto;
scroll-snap-type:y mandatory;
height:100vh;}
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?