Adding the pageax submodule. From the readme:
* Pageax.module
The pageax module is an add-on to jquery47 that makes fetching pages from Drupal via Asyncronous JavaScript over XML (AJAX) an easier process. If the data you want to fetch appears on its own URL, you can simply use pageax to fetch it for you (without side bars, breadcrumbs, headers, or other page cruft) simply and easily.
Pageax requires you write your own .js file like this example:
if (isJsEnabled()) {
addLoadEvent(myinitfunc);
}
function myinitfunc() {
JQ("div#linkcontainer a").pageax(JQ("div#content-container"));
}
// EOF
Where the div#linkcontainer is just a jQuery search to find the links you wish to attach this behavior too and div#content-container is where the content should be placed when it has been fetched.
Some possible uses include fetching image nodes from a slide show, paging through content, etc.