Is there a reason Firefox and Safari (on my Mac) skip an element when I place between fields on this form?
<form> <input type = "text" name = "tags" id = "tags" tabindex = 1 /> <button id = "launch" tabindex = 2> do it! </button> <textarea name = "comment" id = "comment" tabindex = 3> </textarea> </ form>
I didn't need to type tabindex, but even with it, it skips the button. I've seen the documentation that button elements must accept tabindex.
thank
source
to share