Last active
August 29, 2017 17:45
-
-
Save dhavalwd/fc17d5a2a8deaf185a1b50aac35120d7 to your computer and use it in GitHub Desktop.
Easy Scroll to functions. Scroll within Body or scroll within parent element.
This file contains 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
// 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