litera / jquery-scrollintoview

Animated scroll into view jQuery plugin
http://erraticdev.blogspot.com/2011/02/jquery-scroll-into-view-plugin-with.html
231 stars 136 forks source link

Does not work if element is scrollable. #26

Open Daniel-Alonso-Exabeam opened 7 years ago

Daniel-Alonso-Exabeam commented 7 years ago

If the element you call $.scrollintoview() on is itself scrollable, then it doesn't work because inside the function you use el.closest(":selectable") instead of el.parent().closest(":selectable"). Thus the element is always selected rather than it's closest scrollable parent.