Phalcon auto pagination with jquery
问题 I want implement pagination like facebook pagination. In my blog i want it will load first 3post and then when page scroll to bottom it will load more ... i want simple jquery without any plugins. thats why i try to follow this link: example and example2 but not figure it how to use phalcon pagination jquery workable. my currnet configure is like: [controller] $bloger = Blogs::find(["order" => "datetime DESC"]); $numberPage = $this->request->getQuery('page', 'int', 1); /** @var \Phalcon