0

I have a form and each page slides over to a new one. I noticed if user continues to press tab at the end of one div, it jumps into the next hidden dic that should only be viewed if a button is clicked. is there anyway to stop the tab at the last input field?

Thank you

Dee
  • 15
  • 6

1 Answers1

0

You could set the hidden div's "tabindex" field to -1 and remove it when you want it to be shown/able to be tabbed to. More info here: Disabling tab focus on form elements

Felix Guo
  • 2,700
  • 14
  • 20