Events
Last updated
Was this helpful?
Last updated
Was this helpful?
Infinite Ajax Scroll provides a wide range of events which we can use to hook into its functionality and customize where needed.
You can bind and unbind to events with the on
, once
and off
methods.
This event is triggered when the DOM is ready. Right after this event Infinite Ajax Scroll will bind (unless the option is set to false
).
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.
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.
Triggered when the user scrolls inside the scroll container.
scroll.y
integer
Current vertical scroll position from the top of the page (can be negative)
scroll.x
integer
Current horizontal scroll position from the left of the page (can be negative)
scroll.deltaY
integer
Delta between current vertical scroll position and previous position
scroll.deltaX
integer
Delta between current horizontal scroll position and previous position
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.
Triggered when the user resizes the scroll container.
scroll
object
Object with x y coord of the current scroll position
Triggered when the user has hit the scroll threshold for the next page due to scrolling or resizing.
distance
int
The distance to the scroll threshold in pixels
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.
distance
int
The distance to the scroll top in pixels
Triggered right after the hit
event. Indicating that the next page will be loaded.
pageIndex
int
The page index of the next page (the page that is about to 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:
Trigger when loading and appending the next page is completed.
pageIndex
int
The page index of the next page (the page that is finished loading)
Introduced in Infinite Ajax Scroll 3.1.0
Triggered right after the top
event. Indicating that the previous page will be loaded.
pageIndex
int
The page index of the prev page (the page that is about to 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:
Introduced in Infinite Ajax Scroll 3.1.0
Trigger when loading and prepending the previous page is completed.
pageIndex
int
The page index of the next page (the page that is finished loading)
This event is triggered before the next page is requested from the server.
url
string
The url that is about to be requested
xhr
XMLHttpRequest
method
string
"GET"
The request method to use, e.g. "GET", "POST", etc.
body
mixed
null
nocache
boolean
false
Disables cache busting mechanism
responseType
string
"document"
headers
Object
{'X-Requested-With': 'XMLHttpRequest'}
Key-value object containing request headers
You can use this event to modify any of the above properties.
For example to disable the cache busting you can do:
This event is triggered when the next page is requested from the server, right before the items will be appended.
items
array
Array of items that have loaded and will be appended. These items match the selector given in the next
option
url
string
The url that is about to be requested
xhr
XMLHttpRequest
The configured XMLHttpRequest that is going to be used
This event is triggered when an error occurred while loading the next page.
url
string
The url that is about to be requested
method
string
The method used to fetch the url ("GET", "POST", etc)
xhr
XMLHttpRequest
The configured XMLHttpRequest that was used
This event is triggered before the items are about to be appended.
items
array
Array of items that will be appended
parent
Element
The element to which the items will be appended
appendFn
function
Function used to append items to the container
This event is triggered after the items have been appended.
items
array
Array of items that have been appended
parent
Element
The element to which the items have been appended
Introduced in Infinite Ajax Scroll 3.1.0
This event is triggered before the items are about to be prepended.
items
array
Array of items that will be prepended
parent
Element
The element to which the items will be prepended
prependFn
function
Function used to prepend items to the container
Introduced in Infinite Ajax Scroll 3.1.0
This event is triggered after the items have been prepended.
items
array
Array of items that have been prepended
parent
Element
The element to which the items have been prepended
Triggered when the last page is appended.
Introduced in Infinite Ajax Scroll 3.1.0
Triggered when the last page is appended.
Triggered when the user scrolls past a page break. The event provides information about the page in view.
pageIndex
int
The page index of the current page
url
string
Url of the page
title
string
Title of the page
sentinel
Element
Sentinel element. Element used to determine on which page the user is
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:
This event is triggered when Infinite Ajax Scroll starts prefill.
This event is triggered when prefill is finished.
The configured XMLHttpRequest that is going to be used (see )
Body of the request in case of POST (see )
The expected type of response, eg. "document", "json", etc. (also see option)
See for the default append function.
See for the default prepend function.