Skip to content

Instantly share code, notes, and snippets.

@1forh
Last active October 15, 2016 13:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 1forh/7e629f5ee42d25d9e4f0 to your computer and use it in GitHub Desktop.
Save 1forh/7e629f5ee42d25d9e4f0 to your computer and use it in GitHub Desktop.
Smooth scroll to div
<a href="#contact" class="smooth">Scroll to #contact</a>
<div id="contact">
Contact!
</div>
// Smooth scroll to div
// From https://css-tricks.com/snippets/jquery/smooth-scrolling/
$('.smooth').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
|| location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 700);
return false;
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment