Alternative nested form

I am doing some basket of ui in html. I would like to avoid a nested form, but any solution that allows me to send a request to two different handlers, preferably with data included. There are two queries: delete an item and check.

I wonder what the alternative solution to the nested form is.

Please, help.

Thank.

+3
source share
1 answer

You do not have nested forms in HTML, so you need to use an alternative.

The form you publish should not be located where the information you want to publish is located. You can use Javascript to copy information from some fields of the page to hidden fields inside the form somewhere else on the page and publish this form.

. delete, .

+2

All Articles