There is a way to automatically submit a form without clicking to a \"submit\" button?
I have a form with one \"file\" input. I would submit the form after the user
yes, you can use the form.submit() function. Add an onchange listener on the file input and link it to the form.submit() function, like so:
form.submit()