Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Krasnov8953/f64ba887f43baff8073ad23c3072272f to your computer and use it in GitHub Desktop.
Save Krasnov8953/f64ba887f43baff8073ad23c3072272f to your computer and use it in GitHub Desktop.
easing scroll to element
$(document).ready(function(){
$('.btn_blue').click(function(e){
e.preventDefault();
var destination = $('#comments').offset().top;
$('html, body').animate({
scrollTop: destination
}, 600);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment