Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Last active July 19, 2018 08:48
Show Gist options
  • Save andreasvirkus/7f866b144b634a7cec36844d79ee1eea to your computer and use it in GitHub Desktop.
Save andreasvirkus/7f866b144b634a7cec36844d79ee1eea to your computer and use it in GitHub Desktop.
const styleEl = document.createElement('style')
styleEl.setAttribute('id', '_unique-id-outline-styles')
document.head.appendChild(styleEl)
// Inject outline preventing styles only for non-keyboard users
document.addEventListener('mousedown', () => {
styleEl.innerHTML = 'a,a:focus,button,button:focus,input,input:focus,textarea,textarea:focus,div:focus {outline:none}'
})
document.addEventListener('keydown', () => {
styleEl.innerHTML = ''
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment