Created
May 21, 2021 13:41
-
-
Save cngodles/54cac97c5dbf43998a0734e21c2ff6ac to your computer and use it in GitHub Desktop.
Auto scroll Example
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
$(document) | |
.on("click", 'a[href^="#"]', function(e){ | |
e.preventDefault(); | |
var target = $(this).attr("href"); | |
$('html, body').animate({scrollTop: $(target).offset().top }, 400); | |
}) | |
; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment