3

Possible Duplicate:
Prevent tabstop on A element (anchor link) in HTML

see this link first sample layout

does anyone know to prevent visiting/focus on link when I press TAB key and automatically go to the next input?

Community
  • 1
  • 1
jrsalunga
  • 409
  • 2
  • 8
  • 20
  • 7
    Use tabindex="-1" attribute on the link. [http://stackoverflow.com/questions/1561021/prevent-tabstop-on-a-element-anchor-link-in-html][1] [1]: http://stackoverflow.com/questions/1561021/prevent-tabstop-on-a-element-anchor-link-in-html – Bogdan Rybak Aug 26 '12 at 06:24

1 Answers1

1

You need to set a custom tabindex for the elements to skip the link.

Burhan Khalid
  • 169,990
  • 18
  • 245
  • 284