Focus a button on Safari and Firefox for Max

PHOTO EMBED

Tue Nov 15 2022 15:43:43 GMT+0000 (Coordinated Universal Time)

Saved by @Munashe #javascript

document.addEventListener('click', event => {
  if (event.target.matches('button')) {
    event.target.focus()
  }
})
content_copyCOPY

https://zellwk.com/blog/style-hover-focus-active-states/