I am stuck with tabindex problem. As you can see in the HTML layout, I have four buttons: Add, Subtract, Save, and Close . When the user presses the Tab key, the flow starts correctly with Add-> Subtract-> Save-> Close , but after closing, if the user presses the Tab key again, the focus switches to TD TAG with the comment "Jumping Here" . I want to do this, instead click the "Add" button. I tried to give all the buttons tabindex 1, 2, 3, 4 , then I tried to give each button an index of 1 , and the rest of the places -1 , but this also did not solve the problem. How to solve this problem?
http://jsfiddle.net/t3ch/aNxjy/
source
share