You can do this by using the onscroll event:
<html>
<body id="body">
<script>
window.onscroll=function(ev){
if((window.innerHeight+window.pageYOffset)>=body.offsetHeight){
body.innerHTML+='<div>This gets added</div>';
}
};
</script>
</body>
</html>