Skip to content

Instantly share code, notes, and snippets.

@DesignFront
Last active February 5, 2020 18:16
Show Gist options
  • Save DesignFront/ae026392adf476b986a8f454b49eee06 to your computer and use it in GitHub Desktop.
Save DesignFront/ae026392adf476b986a8f454b49eee06 to your computer and use it in GitHub Desktop.
scroll element into view, after focus event occurs
document.addEventListener('focus', (e)=>{e.target.scrollIntoView({behavior: "smooth", block: "center", inline: "nearest"})}, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment