Skip to content

Instantly share code, notes, and snippets.

@koyanloshe
Last active April 17, 2020 08:28

Revisions

  1. koyanloshe revised this gist Apr 17, 2020. No changes.
  2. koyanloshe revised this gist Dec 15, 2018. No changes.
  3. koyanloshe created this gist Dec 15, 2018.
    11 changes: 11 additions & 0 deletions smooth scroll jQuery snippet
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    $("a").on('click', function (event) {
    if (this.hash !== "") {
    event.preventDefault();
    var hash = this.hash;
    $('html, body').animate({
    scrollTop: $(hash).offset().top
    }, 800, function () {
    window.location.hash = hash;
    });
    };
    });