Guest User

Untitled

a guest
Jul 18th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. function scroll_to_if_not_visible(finder) {
  2. var postop = $(finder).offset().top, win = $(window);
  3. var posbottom = postop + $(finder).height();
  4.  
  5. if (posbottom > (win.height() + win.scrollTop())) {
  6. $(finder).get(0).scrollIntoView(false);
  7. }
  8. else if (postop < win.scrollTop()) {
  9. $(finder).get(0).scrollIntoView(true);
  10. }
  11. }
Add Comment
Please, Sign In to add comment