Skip to content

Instantly share code, notes, and snippets.

@khleomix
Last active March 10, 2022 19:40
Show Gist options
  • Save khleomix/21637740af44b7ba11ef921010006f85 to your computer and use it in GitHub Desktop.
Save khleomix/21637740af44b7ba11ef921010006f85 to your computer and use it in GitHub Desktop.
Smooth Scroll to div on load
/**
* File search.js
*
* Scroll to div on load.
*
*/
const divToScroll = document.getElementById( 'scroll-here' );
document.addEventListener( 'DOMContentLoaded', function ( event ) {
if ( divToScroll ) {
divToScroll.scrollIntoView( {
behavior: 'smooth',
block: 'start',
inline: 'nearest',
} );
}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment