Is there a way to reset the position the tabindex is in?
I have four buttons on my site:
<button tabindex='1'>Button 1</button>
<button tabindex='2'>Button 2</button>
<button tabindex='3'>Load new buttons</button>
<button tabindex='4'>Button 4</button>
Now, when I tab through these buttons with my keyboard. And I go to the Load new buttons
button and click space the other buttons are reloaded.
<button tabindex='1'>Button 5</button>
<button tabindex='2'>Button 6</button>
<button tabindex='3'>Load new buttons</button>
<button tabindex='4'>Button 7</button>
What I want, is when I continue tabbing through the buttons it starts again at tabindex 1. But what does happen now it continues with tabindex 4. Is there a way to reset the position. So that the first tab will bring me to Button 5
.