You cannot focus list items. Without even using a script. I tried to do $("li:first").focus()
but does nothing. CSS does not set as if it were focused. It just means that you cannot focus list items or that :focus
pseudo-classes do not work with list items.
Place anchors inside list items
<ul> <li><a href="#">...</a></li> <li><a href="#">...</a></li> <li><a href="#">...</a></li> ... </ul>
This will apparently focus your list item, but will actually focus the anchor labels.
Robert Koritnik
source share