I have a function that I bound with scroll()
event, but the fact is I want the function to be triggered only in case of vertical scroll ( I have some horizontal scroll too).
I didn't see such possibility in the documentation of jQuery, might there be a trick to do so?
You can also use
.scrollTop
to make a custom vertical scroll event.Jquery .scrollTop()
There isn't a specific event, but you could test the
.scrollLeft()
position to see if it has moved from a previously stored position.Something like this:
This should work: