Skip to content

Instantly share code, notes, and snippets.

@wookiecooking
Created July 22, 2014 00:00
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 wookiecooking/0df3f57964f3d6afef19 to your computer and use it in GitHub Desktop.
Save wookiecooking/0df3f57964f3d6afef19 to your computer and use it in GitHub Desktop.
yodawg
function scrolltoit(val) {
$('html,body').animate({
scrollTop: $("#"+ val).offset().top},
'slow');
}
$(document).ready(function(){
$('.fa-chevron-circle-down').fadeIn('slow').on('click', function(){
scrolltoit($(this).attr('data-id'))
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment