I have the code:
$(window).bind('scroll', function() { //doing funny things here }); But I have to fire it a lot when it scrolls, like firefox does.
Firefox fires this multiple times when you scroll, but IE and Chrome fires it only once.
How can I force IE and Chrome to fire it more often in one scroll?
Or is there an alternative way for this?
oninstead ofbind$(window).on('scroll', function() { ... });