https://github.com/dz8540/custom-radio
DZ's custom radio component library.
https://github.com/dz8540/custom-radio
html javascript js lib library ts typescript
Last synced: about 2 months ago
JSON representation
DZ's custom radio component library.
- Host: GitHub
- URL: https://github.com/dz8540/custom-radio
- Owner: DZ8540
- Created: 2021-08-18T18:27:05.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-12-17T16:49:02.000Z (over 4 years ago)
- Last Synced: 2025-09-14T13:49:45.490Z (10 months ago)
- Topics: html, javascript, js, lib, library, ts, typescript
- Language: TypeScript
- Homepage: https://dz8540.github.io/Custom-radio/
- Size: 470 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DZ Custom-radio
To use it, you just need to find all the elements you need, and then pass it to the class.
## Installation
1. Via npm
```cmd
npm i @dz8540/custom-radio
```
2. Manually - all you need is in the "Dist" folder.
```html
```
## Example
### HTML
```html
Radio button
```
### JS
```js
let elements = document.querySelectorAll(elements);
new Radio(elements);
```
## Instruction:
1. Text value print in last span in the component.
2. No id attribute required for input.
3. Input maintains checked attribute.
4. Input maintains disabled attribute.
5. Component maintains data-name attribute, for you can set component name.
6. Attention!!! Radio buttons must have the same value in the name attribute in the input tag.
7. Attention!!! Parent for input element must be an element with class "Radio".
8. Component maintains event subscribes with instance's 'on' method.
## Methods
* action - Set checked or disabled action for parent's input element.
```js
new Radio(elmnts).action(elmnts, 'checked');
```
* on - event subscribe for input element into component.
```js
new Radio(elmnts).on(elmnts, eventName, your callBack);
```
## End
That's all! Enjoy this ( ͡°( ͡° ͜ʖ( ͡° ͜ʖ ͡°)ʖ ͡°) ͡°)