I have a group of 3 radio selects each radio select has a tool tip next to it. I'm not sure what order each of these should receive keyboard focus?

Should it be... 1. First radio select 2. First corresponding tool tip 3. Second radio 3. Second tool tip etc.
You don't really get a choice if you're using a native
<input type='radio'>. Even if your code looked like:Once a radio button is selected, the group of radio buttons acts like one tabstop. The active button determines where in the tab order it is. In the case above, where "Cat" is selected, the tab order is "tooltip 1", radio group, "tooltip 2", "tooltip 3". If "Dog" were selected, the order would be radio group, "tooltip 1", "tooltip 2", "tooltip 3".