Skip to content

Instantly share code, notes, and snippets.

@dhavalwd
Last active August 29, 2017 17:45
Show Gist options
  • Save dhavalwd/fc17d5a2a8deaf185a1b50aac35120d7 to your computer and use it in GitHub Desktop.
Save dhavalwd/fc17d5a2a8deaf185a1b50aac35120d7 to your computer and use it in GitHub Desktop.
Easy Scroll to functions. Scroll within Body or scroll within parent element.
// For more information on this use below link.
// https://stackoverflow.com/questions/2346011/how-do-i-scroll-to-an-element-within-an-overflowed-div
// With Animation
jQuery.fn.scrollTo = function(elem, speed) {
$(this).animate({
scrollTop: $(this).scrollTop() - $(this).offset().top + $(elem).offset().top
}, speed == undefined ? 1000 : speed);
return this;
};
/* ============================================================================ */
// Without Animation
jQuery.fn.scrollTo = function(elem) {
$(this).scrollTop($(this).scrollTop() - $(this).offset().top + $(elem).offset().top);
return this;
};
// How to use.
$("#parent_element").scrollTo("#innerItem");
$("#parent_element").scrollTo("#innerItem", 2000); //custom animation speed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment