Created
October 1, 2018 05:41
-
-
Save memandip/9c85e5596f68011501f2dd5f7fe6ddf4 to your computer and use it in GitHub Desktop.
Scroll to specific overflowed element
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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