Does not consider formactions on submit-buttons
Opened this issue · 0 comments
mertenhanisch commented
Instead of the action declared in the form tag, an html-form can be submitted with another action, declared on the clicked submit-button: See here.
This tool uses only the action declared in the form tag when it is initialised. At that point in time we cannot know, though, with which action the form will be submitted.
I suggest binding eventlisteners on all submit-buttons of the form, that have a formaction attribute, and override the action attribute of the form, when triggered.
An easier workaround consists of 3 steps:
- removing the
this.action = formElement.action;
from the "initialize" function - setting
self.action = formElement.action
in the submit callback of the script - on your submit-button set
onclick="this.form.action='myAction'"