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?
Share
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.