Skip to content

Instantly share code, notes, and snippets.

@0632347878
Created February 5, 2020 16:24
Show Gist options
  • Save 0632347878/e96525c56afa72735aa33692e6d55d1e to your computer and use it in GitHub Desktop.
Save 0632347878/e96525c56afa72735aa33692e6d55d1e to your computer and use it in GitHub Desktop.
Scroll to loacation hash
RIGHT
if (window.location.hash) {
$('html, body').animate({
scrollTop: $(window.location.hash).offset().top - 50
}, 500);
}
WRONG
// let url = location.href;
//
// if(url.includes('#')) {
//
// document.querySelector(`#${url.split('#')[1]}`).scrollIntoView({
// behavior: 'smooth'
// });
// }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment