Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. jQuery(function($) {
  2. $(".my-selector").on('scroll', function() {
  3. if($(this).scrollTop() + $(this).innerHeight() >= $(this)[0].scrollHeight) {
  4. // at the bottom, do stuff like hide a down arrow
  5. $(".down-arrow").addClass("hide");
  6. }else{
  7. // not at bottom, show down arrow or something else
  8. $(".down-arrow").removeClass("hide");
  9. }
  10. })
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement