Extract and set form values through the DOM—no frameworks required! https://github.com/TheoryOfNekomata/formxtra
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
TheoryOfNekomata c0d6405873 Add README 3 년 전
cypress Implement cypress 3 년 전
src Organize tests 3 년 전
test Organize tests 3 년 전
.gitignore Initial commit 3 년 전
LICENSE Initial commit 3 년 전
README.md Add README 3 년 전
cypress.json Implement cypress 3 년 전
jest.config.js Implement tests 3 년 전
package.json Implement cypress 3 년 전
tsconfig.json Implement tests 3 년 전
yarn.lock Implement cypress 3 년 전

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.