artoodetoo / formToWizard

Turn any webform into multi-step wizard with jQuery
MIT License
55 stars 26 forks source link

Fix tabindex issue by swapping createPrevButton/createNextButton. #11

Open jaquer opened 2 years ago

jaquer commented 2 years ago

Swapped createPrevButton/createNextButton order to fix an issue with the buttons tabindex. The original order would create a button that tabs to Previous before Next.

I'm not too familiar with Fiddle, but I can fiddle (heh) with it to provide an example if you'd like.

jaquer commented 2 years ago

OK, I was able to mess with JSFiddle, jsDelivr and GitHub enough to get a small demo going:

master

Click Next to go to the second step, then place your cursor in the input. Press tab. You would expect the focus to go to "Next >", but it goes to "< Back".

PR

Click Next to go to the second step, then place your cursor in the input. Press tab. Now the focus to go to "Next >".