Is there a way to find out page end using Jquery, so that a simple message can be displayed saying you have reached end of the page.
This will work and I tested it in IE 7,8,9 , FF 3.6, Chrome 6 and Opera 10.6
$(window).scroll(function() { if (document.body.scrollHeight - $(this).scrollTop() <= $(this).height()) { alert('end'); } });