TheoryOfNekomata 62cef2d663 | il y a 3 ans | |
---|---|---|
cypress | il y a 3 ans | |
src | il y a 3 ans | |
test | il y a 3 ans | |
.gitignore | il y a 3 ans | |
LICENSE | il y a 3 ans | |
README.md | il y a 3 ans | |
cypress.json | il y a 3 ans | |
jest.config.js | il y a 3 ans | |
package.json | il y a 3 ans | |
tsconfig.json | il y a 3 ans | |
yarn.lock | il y a 3 ans |
Get the value of a form using HTMLFormElement.elements
.
The library is not yet out on any package manager. Installing through the URL is the preferred way.
import getFormValues from '@theoryofnekomata/get-form-values';
const form = document.getElementById('form')
// optional, but just in case there are multiple submit buttons in the form,
// individual submitters can be considered
const submitter = form.querySelector('[type="submit"]')
const values = getFormValues(form, submitter)
The library has been tested on JSDOM through Jest, and the real DOM using Cypress.