I have seen and use javascript to place cursor in first field of form. How do I make the tab key move and focus on the next form field? This does not appear to be happening on my forms input.
you could add taborder to your tags
<input type="text" name="field1" taborder="1"> <input type="text" name="field2" taborder="2">
and so on