Skip to content

Instantly share code, notes, and snippets.

@jdavidbakr
Last active August 29, 2015 14:22
Show Gist options
  • Save jdavidbakr/0f34dade7e80bd173173 to your computer and use it in GitHub Desktop.
Save jdavidbakr/0f34dade7e80bd173173 to your computer and use it in GitHub Desktop.
JavaScript: Ajax pagination script
function paginate(url) {
microAjax(url, function (res) {
process_json(res);
});
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment