Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. $(window).scroll(function() {
  2. if(($(window).scrollTop() + $(window).height() >= $(document).height()) ){
  3. //*Load More data function
  4. }
  5. }
  6.  
  7. $(function () {
  8. $("#iframeid").load(function () {
  9. var iframe = document.getElementById("iframeid").contentWindow;
  10. $(iframe).scroll(function () {
  11. if ( $(iframe).scrollTop()==$(iframe).height()-$("#iframeid").height()) {
  12. alert("Reached bottom!");
  13. }
  14. });
  15. });
  16. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement