Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you manage tabindex in a large scale application?

I was tasked with implementing tabindex across a site with a lot of form elements in the interface. What strategies can be used to manage tabindex in a complex page with ajax updating the majority of ui? Do you just iterate through all the html until the tabindex is organized?

like image 389
Todd Baur Avatar asked Nov 13 '22 03:11

Todd Baur


1 Answers

From my point of view, the best way is to call a JS function on $(document).ready() or such things. Because you have enough time to do that and it's not visual.

like image 183
Tooraj Jam Avatar answered Nov 16 '22 03:11

Tooraj Jam