Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When a node has a tabIndex setting (other than -1), clicking it will give it focus. Removing the tabIndex setting should stop that behavior, so that clicking has no effect.

However, on webkit, once a node has a tabIndex, even after tabIndex is removed, the node can still be clicked and focused. Setting tabIndex=-1 also has the same click problem.

Anyone know a workaround to this problem?

<div id="one">one (no initial tabindex)</div>
<div id="two" tabindex=0>two (initially tabindex=0)</div>
<button type=button onclick="document.getElementById('one').setAttribute('tabindex', 0)">set tabindex on first div</button>
<button type=button onclick="document.getElementById('one').removeAttribute('tabindex', 0)">remove tabindex on first div</button>
<button type=button onclick="document.getElementById('two').removeAttribute('tabindex', 0)">remove tabindex on second div</button>
<button type=button onclick="document.getElementById('one').setAttribute('tabindex', -1)">set tabindex=1 on first div</button>
<button type=button onclick="document.getElementById('two').setAttribute('tabindex', -1)">set tabindex=1 on second div</button>
share|improve this question
Just stumbled onto this issue myself... damned annoying, it is. – RwwL Sep 22 '10 at 14:47
What version of Safari / WebKit? – subtleGradient Jan 6 '11 at 1:06
Just tried on Chrome 8.0.552.231 and it still occurred. Not sure what version of webkit I tested on initially. – Bill Keese Jan 12 '11 at 7:58

2 Answers

Try to remove the second parameter from removeAttribute. You get something like this:

<div id="one">one (no initial tabindex)</div> 
<div id="two" tabindex=0>two (initially tabindex=0)</div> 
<button type=button onclick="document.getElementById('one').setAttribute('tabindex', 0)">set tabindex on first div</button> 
<button type=button onclick="document.getElementById('one').removeAttribute('tabindex')">remove tabindex on first div</button> 
<button type=button onclick="document.getElementById('two').removeAttribute('tabindex')">remove tabindex on second div</button> 
<button type=button onclick="document.getElementById('one').setAttribute('tabindex', -1)">set tabindex=1 on first div</button> 
<button type=button onclick="document.getElementById('two').setAttribute('tabindex', -1)">set tabindex=1 on second div</button>

Let me know how is working for you.

share|improve this answer
1  
Nope, same problem as before (tested on chrome 10). – Bill Keese Apr 24 '11 at 23:20

One way to avoid focus on elements is by using the onfocus event.

For example element.onfocus = function () { this.blur(); } but this is undesirable as it renders the navigation via TAB useless. .blur() resets the current index, so once it reaches that element, the TABbing starts from 0.

An alternative could be finding the next focusable element and give focus to it, rather than blurring altogether. This, thought, also breaks shift+tab, so it's still not recommended.

The only way I can think of to solve this situation is to fix it yourself in WebKit or wait for it to be fixed.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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