Extract and set form values through the DOM—no frameworks required! https://github.com/TheoryOfNekomata/formxtra
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
TheoryOfNekomata 3b46b67247 Unify tests pirms 3 gadiem
cypress Implement cypress pirms 3 gadiem
src Unify tests pirms 3 gadiem
test Unify tests pirms 3 gadiem
.gitignore Initial commit pirms 3 gadiem
LICENSE Initial commit pirms 3 gadiem
README.md Update README pirms 3 gadiem
cypress.json Unify tests pirms 3 gadiem
jest.config.js Unify tests pirms 3 gadiem
package.json Unify tests pirms 3 gadiem
tsconfig.json Implement tests pirms 3 gadiem
yarn.lock Unify tests pirms 3 gadiem

README.md

get-form-values

Get the value of a form using HTMLFormElement.elements.

Installation

The library is not yet out on any package manager. Installing through the URL is the preferred way.

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.