$(function () {
  var url = $("li.next-page a:last").attr("href");
  if (url == undefined) {
    return;
  }
  url = url.replace(window.location.origin, window.location.origin + "/api/search/filterproducts");
  $("li.next-page a:last").attr("href", url);
  var template = $("#page-load-status-template").html();
  $(".product-grid").append($(template));
});

$(function () {
  $('.item-grid').infiniteScroll({
    // options
    path: 'li.next-page a',
    append: '.item-box',
    history: false,
    hideNav: '.pager',
    status: '.page-load-status'
  });
});