Skip to content

Instantly share code, notes, and snippets.

@brunopulis
Created September 3, 2015 02:54
Show Gist options
  • Save brunopulis/8c46c1bcd778dca82547 to your computer and use it in GitHub Desktop.
Save brunopulis/8c46c1bcd778dca82547 to your computer and use it in GitHub Desktop.
Load more post's
var loadMore = function() {
var size_li = $(".nth").size(),
btnLoadMore = $('#loadMore');
btnLoadMore.on('click', function () {
$('.nth').show();
});
}
$(document).ready(loadMore);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment