Created
June 19, 2013 13:47
-
-
Save dehart/5814455 to your computer and use it in GitHub Desktop.
Load on scroll
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var loading = false; | |
$(window).scroll(function(){ | |
if((($(window).scrollTop()+$(window).height())+250)>=$(document).height()){ | |
if(loading == false){ | |
loading = true; | |
$('#loadingbar').css("display","block"); | |
$.get("load.php?start="+$('#loaded_max').val(), function(loaded){ | |
$('body').append(loaded); | |
$('#loaded_max').val(parseInt($('#loaded_max').val())+50); | |
$('#loadingbar').css("display","none"); | |
loading = false; | |
}); | |
} | |
} | |
}); | |
$(document).ready(function() { | |
$('#loaded_max').val(50); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment