vote up 2 vote down star

Hi,

I am using tags for links on a web page. How do I disable tab key from selecting either of them.

flag

63% accept rate
Please be aware that in doing so, a website doing this might not be strictly legal in certain jurisdictions due to disability discrimination legislation. – Rowland Shaw Jan 19 '09 at 10:46
Sounds like you are working for my bank. – Manni Jan 19 '09 at 11:51
For all the answers below: what's the easiest valid HTML? tabindex=-1 doesn't validate, onblur seems excessive. – dfrankow Dec 2 at 22:14

4 Answers

vote up -2 vote down check

You could do something like this for those links:

 <a href="http://foo.bar" onfocus="this.blur()">Can't focus on this!</a>

You should use the answer below, though.

link|flag
Thanks, Worked like a charm :) – Rakesh Jan 19 '09 at 10:08
This is not the right way to do it. tabIndex property is. – Alex Sep 17 at 18:27
Alex, that's why I updated my answer to say that it's better to use the one below. – Evan Fosmark Sep 17 at 19:32
vote up 1 vote down

I've had to prevent divs with and overflow: auto css rule from having a tab stop before and what I did was (transposed for a's):

var links = document.getElementsByTagName( 'a' );

for( var i = 0, j =  links.length; i < j; i++ ) {
    links[i].setAttribute( 'tabindex', '-1' );
}

Using tabindex rather than blurring means the focus will skip to the next element.

Are you sure you want to disable tabindex though? It's kinda vital for navigation without a mouse.

Just noticed a similar answer in plain HTML

link|flag
vote up 17 vote down

Alternatively you could go for plain HTML solution.

<a href="http://foo.bar" tabIndex="-1">inaccessible by tab link</a>

link|flag
and works without script – annakata Jan 19 '09 at 10:13
@annakata, I think that was Sergey's point. Heh. – Evan Fosmark Jan 19 '09 at 10:18
+1 Always favour non-script solutions (that work!) over non-script solutions. – cletus Jan 19 '09 at 10:22
1  
Oddly enough people have not yet suggested a nowdays panacea solution - jQuery code sample – Sergey Ilinsky Jan 19 '09 at 10:25
Does it validate against W3C HTML validator ? – Guido GarcĂ­a Jan 19 '09 at 10:31
show 2 more comments
vote up -2 vote down

Try

<a onfocus="this.blur();" href = "bla">Bla</a>
link|flag
Beat me by 39 seconds, Nelson. ;-) – Evan Fosmark Jan 19 '09 at 9:58
Thanks, Worked like a charm :) – Rakesh Jan 19 '09 at 10:08
Not nice for accessibility/laptop keyboard users/etc. As the focus cycles into the element it gets completely lost, making it impossible to tab onto the next link. Better to take it out of the regular tab cycle using a tabindex attribute. – bobince Jan 19 '09 at 12:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.