Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bluem/form-control-event-name
Vanilla JS browser lib for getting name of an event emitted by a form control when changed
https://github.com/bluem/form-control-event-name
Last synced: 30 days ago
JSON representation
Vanilla JS browser lib for getting name of an event emitted by a form control when changed
- Host: GitHub
- URL: https://github.com/bluem/form-control-event-name
- Owner: BlueM
- Created: 2018-12-02T13:02:10.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-04-05T18:41:55.000Z (7 months ago)
- Last Synced: 2024-04-05T19:42:38.472Z (7 months ago)
- Language: JavaScript
- Size: 362 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Overview
This library is a helper library extracted from [@bluem/form-change-tracker](https://www.npmjs.com/package/@bluem/form-change-tracker) to be reused in other contexts. It merely serves for getting the name of the event emitted by an HTML form element when changed (for example: “click” for a checkbox, “change” for a `` element).
## Browser support
This library will work (at least) on:
* Google Chrome Desktop and Android (any version)
* Firefox Desktop and Android (any version)
* Safari Desktop and iOS (any version)
* Microsoft Edge (any version)
* Microsoft IE11 (older versions untested)# Usage
The library is an ES6 module, so the way to use it depends on your tooling and the browsers you want to support. But basic usage is:```javascript
// If using native ES6 module in browser:
import formControlEvenName from './node_modules/@bluem/form-control-event-name/index.js';// OR:
// If using Webpack or Parcel for bundling:
// import formControlEventName from '@bluem/form-control-event-name/index.js';formControlEventName(myFormElement); // Will return the name of the event (string)
```# Tests
Install npm depencencies, then run `npm run test` or `npm run test-coverage`.# License
MIT License# Version History
## 1.0.8 (2024-04-05)
- Updated npm dependencies to fix vulnerabilites in dev dependencies. No changes in the module itself.
## 1.0.7 (2022-12-08)
- Updated npm dependencies to fix vulnerabilites in dev dependencies. No relevant change in the module itself.
## 1.0.6 (2022-04-10)
- Updated npm dependencies to fix vulnerabilites in dev dependencies. No changes in the module itself.
## 1.0.5 (2021-06-27)
- Updated npm dependencies to fix vulnerabilites in dev dependencies. No changes in the module itself.## 1.0.4 (2020-09-29)
- Fix IE11 compatibility, for cases where ES6 is not transpiled to ES5.
- Updated npm dependencies to fix some vulnerabilites in 3rd-party code## 1.0.3 (2020-01-26)
- Updated npm dependencies to fix vulnerabilites in 3rd-party code. No changes in the module itself.## 1.0.1 (2019-08-14)
- Updated npm dependencies to fix vulnerabilites in 3rd-party code. No changes in the module itself.## 1.0 (2018-12-02)
- Initial release