Created
April 14, 2018 06:02
-
-
Save MuhammedMahdy/2cca4b775f350bc385f1702b3cc4f740 to your computer and use it in GitHub Desktop.
scrollDown
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
function scrollDown(selector,speed){ | |
var n = $(selector)[0].scrollHeight; | |
$(selector).animate({ scrollTop: n }, speed); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment