Skip to content

A simple date picker web component built with Vanilla JS ๐Ÿ—“๏ธ

License

Notifications You must be signed in to change notification settings

abelgarcia2/date-picker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

13 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

<date-picker/>

A simple date picker web component built with Vanilla JS ๐Ÿ—“๏ธ

Usage

First import the component

<script src="https://unpkg.com/@abelgarcia2/date-picker@0.1.2-dev/dist/bundle.min.js"></script>

Then use the component in your html

<date-picker id="picker" style="width: 300px;"></date-picker>

Get selected date

document.getElementById("picker").getSelectedDate()

Listen to changes

let picker = document.getElementById("picker");
picker.addEventListener('changeDate', (event) => console.log(event.detail));

Example

See working example at codi.link