Hello, as far as I know there are three methods to submit an HTML form without JS or keyboard:
1. input type=submit 2. button tag 3. input type=image
Is there another way to create an element submitting the form on being pressed?
Is it correct to handle button tag (type=submit) same as input type=submit (I mean, if we discard the fact button can contain inner html, we can simply replace button
with input type="submit"
and the form will be sent correctly)?
Is adding name.x and name.y the only difference when using input type=image?