Skip to content

Instantly share code, notes, and snippets.

@memandip
Created October 1, 2018 05:41
Show Gist options
  • Save memandip/9c85e5596f68011501f2dd5f7fe6ddf4 to your computer and use it in GitHub Desktop.
Save memandip/9c85e5596f68011501f2dd5f7fe6ddf4 to your computer and use it in GitHub Desktop.
Scroll to specific overflowed element
// Scroll to the top
$parent.scrollTop($parent.scrollTop() + $child.offset().top);
// Scroll to the center
$parent.scrollTop($parent.scrollTop() + $child.offset().top
- $parent.height()/2 + $child.height()/2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment