Skip to content

Instantly share code, notes, and snippets.

@keithmancuso
Last active July 28, 2020 01:03
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save keithmancuso/17619fc405a621b4a11e to your computer and use it in GitHub Desktop.
Save keithmancuso/17619fc405a621b4a11e to your computer and use it in GitHub Desktop.
Craft Ajax Paging
{% if craft.request.isAjax %}
{% set layout = "_ajaxLayout" %}
{% else %}
{% set layout = "_layout" %}
{% endif %}
{% extends layout %}
{% set limit = 10 %}
{% set params = { section: 'news', limit: limit} %}
{% block content %}
{% if not craft.request.isAjax %}
<h1>News</h1>
<div id="news-entries">
{% endif %}
{% paginate craft.entries(params) as entries %}
{% for entry in entries %}
<article class="news">
<h2><a href="{{ entry.url }}">{{ entry.title }}</a></h2>
{{ entry.body }}
</article>
{% endfor %}
{% endpaginate %}
{% if not craft.request.isAjax %}
</div>
<a href="#" id="loadMore" class="btn btn-default">load more news</a>
<div id="loading" style="display:none">
<img src="/images/loading.gif"/>
</div>
{% set pagingJs %}
$(function () {
var page = 2;
$('#loadMore').click (function (e) {
e.preventDefault();
$('#loading').show();
$.get( "/news/p"+page, function( data ) {
$( "#news-entries" ).append( data );
$('.loading').hide();
page++;
});
});
});
{% endset %}
{% includeJs pagingJs %}
{% endif %}
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment