1.0.0 • Published 3 years ago

jdatepicker v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

jdatepicker

A Javascript solar (jalali) datepicker for HTML.

Installation

Install via NPM:

npm install jdatepicker

Install via CDN

<script src="https://unpkg.com/jdatepicker@1.0.0/src/jdatepicker.js"></script>

Usage

  • You do not need to require if you are using via CDN.
const { jDatePicker } = require('jdatepicker')

jDatePicker('inputID') // inputID is the id of the input element in HTML.
  • You can pass a second optional paramater for customizing background colors and month names.
jDatePicker('inputID', {
    headerColor: '#f44336',
    bodyColor: '#fff',
    dariMonth: false     // to show iranian month names.
})

Contribute

Report bugs and suggest feature in issue tracker. Feel free to Fork and send Pull Requests.

License

MIT