I am creating a form without a submit button that will send a submission every time a form element changes value. (All text inputs)
If I use onchange
event the form won't submit until I blur
the field, which would be too late. I need it to submit on each minor change. E.g. typing "five" would mean 5 submits.
If i use key up it will make a lot of submissions and create a race condition on the server. What is the best method of doing this? Are there any other options?