TheoryOfNekomata 62cef2d663 | пре 3 година | |
---|---|---|
cypress | пре 3 година | |
src | пре 3 година | |
test | пре 3 година | |
.gitignore | пре 3 година | |
LICENSE | пре 3 година | |
README.md | пре 3 година | |
cypress.json | пре 3 година | |
jest.config.js | пре 3 година | |
package.json | пре 3 година | |
tsconfig.json | пре 3 година | |
yarn.lock | пре 3 година |
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.