标签: jquery html
我需要一个简单的解决方案,当用户将页面滚动到某个div时触发事件。 我想显示当前崩溃的div。
答案 0 :(得分:2)
$(window).scroll(function(event) { console.log($(".target").offset().top < $(window).scrollTop() + $(window).outerHeight()); });
Source: Other question