sam
sam

Reputation: 99

How to disable keyboard tab focus

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

Answers (1)

Ashish Patel
Ashish Patel

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

Related Questions