Skip to content

Instantly share code, notes, and snippets.

@jwebcat
Created May 13, 2014 07:44
Show Gist options
  • Select an option

  • Save jwebcat/4d1f95653b3ccab6a90c to your computer and use it in GitHub Desktop.

Select an option

Save jwebcat/4d1f95653b3ccab6a90c to your computer and use it in GitHub Desktop.

Revisions

  1. jwebcat created this gist May 13, 2014.
    10 changes: 10 additions & 0 deletions scroll-to.jquery.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    // scroll to div
    $(function($){
    $('a.nav').click(function() {
    var $this = $(this),
    _href = $this.attr('href'),
    dest = $(_href).offset().top;
    $("html:not(:animated),body:not(:animated)").animate({ scrollTop: dest}, 400 );
    return false;
    });
    });