TheoryOfNekomata c0d6405873 | před 3 roky | |
---|---|---|
cypress | před 3 roky | |
src | před 3 roky | |
test | před 3 roky | |
.gitignore | před 3 roky | |
LICENSE | před 3 roky | |
README.md | před 3 roky | |
cypress.json | před 3 roky | |
jest.config.js | před 3 roky | |
package.json | před 3 roky | |
tsconfig.json | před 3 roky | |
yarn.lock | před 3 roky |
Get the value of a form using HTMLFormElement.elements
.
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.