Skip to content

Instantly share code, notes, and snippets.

View DesignFront's full-sized avatar

Lynk DesignFront

View GitHub Profile
@DesignFront
DesignFront / scrollIntoView.js
Last active February 5, 2020 18:16
scroll element into view, after focus event occurs
document.addEventListener('focus', (e)=>{e.target.scrollIntoView({behavior: "smooth", block: "center", inline: "nearest"})}, true);