I have this old website using only HTML, CSS, and javaScript.(No React). And it is using talk back to read through the website. But it does not have the initial focus when screen reader mode is on. It will start focusing when I tab around. How can I set the initial focus with just HTML, CSS, and javaScript?
I have tried: document.querySelector('#foo\bar').focus()
but it only sets the browser focus.