Search code examples
javascripthtmlaccessibility

document.getElementById('').focus() not working on button


I meet an issue when implementing accessibility features.

I tried to set keyboard focus on a button using the approach:

document.getElementById('123').focus()

But, it doesn't work. The element didn't get focused. Can I get some help? Thanks!

JS Fiddle: https://jsfiddle.net/dp5x7rbq/


Solution

  • It is working, just add to css:

    button:focus{
      color: red;
    }
    

    To see the change