Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Aliciabcd/8c40be0321a62bf0c42a0a9c2c4bb773 to your computer and use it in GitHub Desktop.
Save Aliciabcd/8c40be0321a62bf0c42a0a9c2c4bb773 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
href = window.location.href.match(/block=([0-9a-z\-_]*)/i)
if(href.length > 1){
block_id = href[1]
$target = $("#" + block_id)
console.log($target.offset)
var targetOffset = $target.offset().top - 80;
$('html, body').animate({
scrollTop: targetOffset
}, 500 );
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment