Skip to content

Instantly share code, notes, and snippets.

@kamatari
Created October 28, 2014 09:08
Show Gist options
  • Select an option

  • Save kamatari/613f903e9265d55f125b to your computer and use it in GitHub Desktop.

Select an option

Save kamatari/613f903e9265d55f125b to your computer and use it in GitHub Desktop.
<script type="text/javascript">
$(document).ready(function(){
var loaded_items = 0;
$(".loadmore_button").click(function(){
loaded_items = $(".app_list").length;
$.get('/index.php/app/loadmore/'+loaded_items, function(data){
$('.app_list').append(data);
});
})
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment