Extract and set form values through the DOM—no frameworks required! https://github.com/TheoryOfNekomata/formxtra
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
TheoryOfNekomata c0d6405873 Add README před 3 roky
cypress Implement cypress před 3 roky
src Organize tests před 3 roky
test Organize tests před 3 roky
.gitignore Initial commit před 3 roky
LICENSE Initial commit před 3 roky
README.md Add README před 3 roky
cypress.json Implement cypress před 3 roky
jest.config.js Implement tests před 3 roky
package.json Implement cypress před 3 roky
tsconfig.json Implement tests před 3 roky
yarn.lock Implement cypress před 3 roky

README.md

get-form-values

Get the value of a form using HTMLFormElement.elements.

Usage

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)

Tests

The library has been tested on JSDOM through Jest, and the real DOM using Cypress.