How do I run a jquery function on window events: load, resize, and scroll?
Here is my code I'm trying to detect if a div is viewable and then if it is run some ajax code...
<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 }
$(window). on('resize', function(){ var win = $(this); //this = window if (win. height() >= 820) { /* ... */ } if (win.
The resize event fires when the document view (window) has been resized. This event is not cancelable and does not bubble. In some earlier browsers it was possible to register resize event handlers on any HTML element.
The code which gets included inside $( window ). on( "load", function() { ... }) runs only once the entire page is ready (not only DOM). Note: The load() method deprecated in jQuery version 1.8. It was completely removed in version 3.0.
You can use the following. They all wrap the window
object into a jQuery object.
Load:
$(window).load(function () { topInViewport($("#mydivname")) });
Resize:
$(window).resize(function () { topInViewport($("#mydivname")) });
Scroll
$(window).scroll(function () { topInViewport($("#mydivname")) });
Or bind to them all using on
:
$(window).on("load resize scroll",function(e){ topInViewport($("#mydivname")) });
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With