Created
October 14, 2014 13:23
-
-
Save orhanveli/70edba023e0039aef580 to your computer and use it in GitHub Desktop.
jQuery smooth scroll to 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
| function scrollToElement(selector) { | |
| var $elem = $(selector); | |
| if ($elem.length == 0) { | |
| return; | |
| } | |
| var offsetTop = $elem.offset().top; | |
| $('html,body').animate({ | |
| "scrollTop": offsetTop | |
| }, 700); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment