Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function() {
- var count = 0;
- $(window).scroll(function(){
- if ($(window).scrollTop() > $(document).height() - window.innerHeight- 20) {
- $('body').append($('<p>').text(count + ' ' + lorem));
- count = count + 1;
- }
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment