We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using v1.1.7 on Windows 10.
With a plain table in a validated HTML file, the tab order isn't preserved.
<table> <tr> <td><a href="#">Link A</a></td> <td>Some text</td> <td><textarea name="Text A"></textarea></td> </tr> <tr> <td><a href="#">Link B</a></td> <td>Some text</td> <td><textarea name="Text B"></textarea></td> </tr> </table>
Expected result: the tab order should be:
Actual result: the tab order is:
So I added tabindex to all of my links and fields.
<table> <tr> <td><a tabindex="1" href="#">Link A</a></td> <td>Some text</td> <td><textarea tabindex="2" name="Text A"></textarea></td> </tr> <tr> <td><a tabindex="3" href="#">Link B</a></td> <td>Some text</td> <td><textarea tabindex="4" name="Text B"></textarea></td> </tr> </table>
No change in tab order
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using v1.1.7 on Windows 10.
With a plain table in a validated HTML file, the tab order isn't preserved.
Expected result: the tab order should be:
Actual result: the tab order is:
So I added tabindex to all of my links and fields.
No change in tab order
The text was updated successfully, but these errors were encountered: