Skip to content

Instantly share code, notes, and snippets.

@thatgibbyguy
Created June 17, 2015 23:16
Show Gist options
  • Save thatgibbyguy/02059f61ae93d529c8b2 to your computer and use it in GitHub Desktop.
Save thatgibbyguy/02059f61ae93d529c8b2 to your computer and use it in GitHub Desktop.
manship-infinite-scroll
<script type="text/javascript">
$(document).ready(function(){
$("#timeline").infinitescroll({
navSelevtor : ".navigation",
nextSelector : "a.next",
itemSelector : ".sectioner",
contentSelector : "#timeline",
extractLink: true
});
$('.simply-scroll-btn-left').text("<<").show();
$('.simply-scroll-btn-right').text(">>").show();
});
$(".next-page").hover(function(){
$('#timeline').infinitescroll('retrieve');
return false;
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment