Skip to content

Instantly share code, notes, and snippets.

@koentjuh1
Created August 30, 2016 10:59
Show Gist options
  • Save koentjuh1/a33e55c008d03833aeec04bc75a67a4b to your computer and use it in GitHub Desktop.
Save koentjuh1/a33e55c008d03833aeec04bc75a67a4b to your computer and use it in GitHub Desktop.
Scroll to div
/* Scroll button: */
<div class="arrow-icon scroll" data-rel="#arrow-scroll-to">
</div>
/* Scroll to: */
<div id="arrow-scroll-to">
</div>
$(".scroll").on('click', function() {
var target = $(this).data('rel');
var $target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top
}, 900, 'swing');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment