Skip to content
This repository was archived by the owner on Aug 24, 2022. It is now read-only.
This repository was archived by the owner on Aug 24, 2022. It is now read-only.

Does not consider formactions on submit-buttons #19

Description

@mertenhanisch

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:

  1. removing the this.action = formElement.action; from the "initialize" function
  2. setting self.action = formElement.action in the submit callback of the script
  3. on your submit-button set onclick="this.form.action='myAction'"

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions