Skip to content

Instantly share code, notes, and snippets.

@bungabear
Created May 26, 2018 19:44
Show Gist options
  • Save bungabear/c8aa6774f37d4645942ea29e4d3ed571 to your computer and use it in GitHub Desktop.
Save bungabear/c8aa6774f37d4645942ea29e4d3ed571 to your computer and use it in GitHub Desktop.
function scroll_to(current, to){
$(document).ready(function(){
var currentOffset = $('#{current}').offset();
var toOffset = $('#{to}').offset();
$('html, body').animate({ toOffset.top : currentOffset.top}, 200);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment