Events
Infinite Ajax Scroll provides a wide range of events which we can use to hook into its functionality and customize where needed.
Working with events
You can bind and unbind to events with the on
, once
and off
methods.
Reference
ready
This event is triggered when the DOM is ready. Right after this event Infinite Ajax Scroll will bind (unless the bind
option is set to false
).
binded
This event is triggered when Infinite Ajax Scroll binds to the scroll and resize events of the scroll container. This mostly happens right after the DOM is ready, but this can be configured with the bind
option.
unbinded
Triggered when Infinite Ajax Scroll removed its listeners from the scroll and resize events.
Infinite Ajax Scroll will only unbind when we call the unbind
method.
scrolled
Triggered when the user scrolls inside the scroll container.
The delta values can be used to determine the scroll direction. A positive value means scrolling down (deltaY) or to the right (deltaX). A negative value means the opposite direction.
resized
Triggered when the user resizes the scroll container.
hit
Triggered when the user has hit the scroll threshold for the next page due to scrolling or resizing.
top
Introduced in Infinite Ajax Scroll 3.1.0
Triggered when the user has hit the top of the scroll area for the previous page due to scrolling or resizing.
next
Triggered right after the hit
event. Indicating that the next page will be loaded.
pageIndex is zero indexed. This means the index starts at 0 on the first page.
For example to notify the user about loading the next page, you can do:
nexted
Trigger when loading and appending the next page is completed.
prev
Introduced in Infinite Ajax Scroll 3.1.0
Triggered right after the top
event. Indicating that the previous page will be loaded.
pageIndex is zero indexed. This means the index starts at 0 on the first page.
For example to notify the user about loading the previous page, you can do:
preved
Introduced in Infinite Ajax Scroll 3.1.0
Trigger when loading and prepending the previous page is completed.
load
This event is triggered before the next page is requested from the server.
You can use this event to modify any of the above properties.
For example to disable the cache busting you can do:
loaded
This event is triggered when the next page is requested from the server, right before the items will be appended.
error
This event is triggered when an error occurred while loading the next page.
append
This event is triggered before the items are about to be appended.
See src/append.js for the default append function.
appended
This event is triggered after the items have been appended.
prepend
Introduced in Infinite Ajax Scroll 3.1.0
This event is triggered before the items are about to be prepended.
See src/prepend.js for the default prepend function.
prepended
Introduced in Infinite Ajax Scroll 3.1.0
This event is triggered after the items have been prepended.
last
Triggered when the last page is appended.
Read more on how we can inform the user about reaching the last page
first
Introduced in Infinite Ajax Scroll 3.1.0
Triggered when the last page is appended.
page
Triggered when the user scrolls past a page break. The event provides information about the page in view.
pageIndex is zero-based. This means the index starts at 0 on the first page.
One use case for this event is to update the browser url and title:
View this behaviour in a live demo
prefill
This event is triggered when Infinite Ajax Scroll starts prefill.
prefilled
This event is triggered when prefill is finished.
Last updated