I wish to achieve content load when the user scrolls to the bottom of the page.
I am having a problem. It works fine on desktop browsers but not on mobile. I have imple
For anyone who looks here later, I solved this by adding height=device-height to the meta viewport tag:
height=device-height
meta
You can then carry on using $(document).scroll(function(){});
$(document).scroll(function(){});
This worked with iOS 5