Skip to content

Instantly share code, notes, and snippets.

@keeprock
Created March 16, 2015 13:55
Show Gist options
  • Save keeprock/65f04b76c9f6e202bcfe to your computer and use it in GitHub Desktop.
Save keeprock/65f04b76c9f6e202bcfe to your computer and use it in GitHub Desktop.
Scroll viewport to calculated offset of a specified element
var body = $("html, body");
var element = $('SOME_SELECTOR');
body.animate({
scrollTop:element.offset().top
}, 'swing', 2000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment