如何在窗口事件上运行 jquery 函数:加载、调整大小和滚动?
这是我的代码,我试图检测一个 div 是否可见,然后它是否正在运行一些 ajax 代码......
<script>
function topInViewport(element) {
return $(element).offset().top >= $(window).scrollTop() && $(element).offset().top <= $(window).scrollTop() + $(window).height();
}
</script>
<script>
topInViewport($("#mydivname"))
{
// ajax code goes here
}