html - How to call javascript function each time user scrolls - Stack Overflow

I want to call a javascript function each time Facebook updates their feed for a user (when he scrolls)

I want to call a javascript function each time Facebook updates their feed for a user (when he scrolls). Any idea how I can do that?

This does not work:

if (document.body.scrollTop > 30) {
        addArt();
}

Thank you

I want to call a javascript function each time Facebook updates their feed for a user (when he scrolls). Any idea how I can do that?

This does not work:

if (document.body.scrollTop > 30) {
        addArt();
}

Thank you

Share Improve this question asked Nov 4, 2016 at 15:07 nico_lrxnico_lrx 2903 gold badges23 silver badges39 bronze badges 2
  • 1 window.addEventListener("scroll", addArt()); might work – Kevin Kloet Commented Nov 4, 2016 at 15:09
  • There's an onscroll event if I remember correctly – GordonM Commented Nov 4, 2016 at 15:09
Add a ment  | 

3 Answers 3

Reset to default 7

Using an onscroll function:

window.onscroll = function() { }

You need to attach it to the window's scroll event listener. I have wrapped it inside an onload event, so that it gets executed after the document is loaded.

window.onload = function () {
  window.onscroll = function () {
    if (document.body.scrollTop > 30) {
      addArt();
    }
  };
};

Or if you are using jQuery, use:

$(function () {
  $(window).scroll(function() {
    if (document.body.scrollTop > 30) {
      addArt();
    }
  });
});

Using jquery, you can use this function to run code every time the user scrolls

$( window ).scroll(function() { $(window).scrollTop() > 30) { addArt(); } });

window.onscroll = function() { if (document.body.scrollTop > 30) { addArt(); } };

edit: added none jquery version

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743734229a4497962.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信