Reputation: 99
Is there any way to disable disable keyboard tab focus ?
I just want to skip focusing to "bbb" when keyboard tabbing.
<a href="#">aaa</a>
<a href="#" tab-index="-1">bbb</a>
<a href="#">ccc</a>
<a href="#">ddd</a>
Upvotes: 0
Views: 5135
Reputation: 367
You almost got it right. You only need to fix tab-index to tabindex. Below is the fixed html:
<a href="#">aaa</a>
<a href="#" tabindex="-1">bbb</a>
<a href="#">ccc</a>
<a href="#">ddd</a>
It will skip the tag with text 'bbb'.
Upvotes: 6