Is there a way to prevent $(window).scroll() from firing on page load?
$(window).scroll()
Testing the following code in Firefox 4, it fires even when I unplug the mouse.<
This was the solution I went for. Any improvements gratefully received.
var scroll = 0; $(window).scroll(function(){ if (scroll>0){ console.log("Scroll Fired"); } scroll++; });