Is there a way - Form entries

Basically, I’d like to know - is there a way that when I /user enters data in form fields,
upon hitting enter it transfers arrow to next field: so if I finished writing name, I’d hit enter and it’d immediately write surname in next form field. Instead of clicking with a mouse to change.

I don’t think there’s enter control, but there is tab control:
http://webcheatsheet.com/HTML/controll_tab_order.php

1 Like

if you want to make it automatic

for option input like multiple choice, you can set the focus to change to next question if the previous value changed. This is difficult to apply it to textbox because you don’t know when user finish make input.

if you just don’t want to click the mouse

use tab control

I was simply unaware that one can hit tab instead of enter to go in next form field.