Skip to content

Instantly share code, notes, and snippets.

View bryanjvolz's full-sized avatar
🍕

Bryan V bryanjvolz

🍕
View GitHub Profile
function handleFirstTab(e) {
if (e.keyCode === 9) { // the "I am a keyboard user" key
document.body.classList.add('user-is-tabbing');
window.removeEventListener('keydown', handleFirstTab);
}
}
window.addEventListener('keydown', handleFirstTab);