Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save apsolut/4dc8ac2dee90661bd974ebdd45aacf18 to your computer and use it in GitHub Desktop.
Save apsolut/4dc8ac2dee90661bd974ebdd45aacf18 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
$(".content").hide();
$(".content").slice(0, 8).show();
$("#loadMore").on("click", function(e){
e.preventDefault();
$(".content:hidden").slice(0, 3).slideDown();
if($(".content:hidden").length == 0) {
$("#loadMore").hide();
$(".completed").show();
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment