I have an interesting question about focus in webpages. This relates mainly to the interplay of mouse and keyboard. Say I have an array of objects in the webpage in which one is "Focused" or selected, and there's a way to navigate them using tab. If the element has a delete button and I click on it, what should happen to the focus?
My theory is that the focus should disappear because the element that is acted on gains focus and subsequently disappears. This creates a weird situation in which the focus is then relegated to the root element, and tabbing subsequently goes to the top element in the page.
Would like to hear some opinions on this.