README - jscancer - Javascript crap (relatively small) | |
git clone git://git.codemadness.org/jscancer | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
README (787B) | |
--- | |
1 datepicker | |
2 ========== | |
3 | |
4 small Javascript datepicker script. | |
5 | |
6 | |
7 FEATURES | |
8 -------- | |
9 | |
10 - Small: | |
11 - Filesize: +- 6.4KB. | |
12 - Lines: +- 200, not much code, so hopefully easy to understand. | |
13 - No dependencies on other libraries like jQuery. | |
14 - "Graceful" fallback to the HTML5 datepicker if it is supported. | |
15 - Supports min and max date attribute. | |
16 - Support ISO weekdate (monday) or not (sunday). | |
17 - Permissive ISC license, see LICENSE file. | |
18 - Officially supported browsers are: | |
19 - Firefox and Firefox ESR. | |
20 - Chrome and most recent webkit-based browsers. | |
21 - IE10+. | |
22 | |
23 | |
24 EXAMPLES | |
25 -------- | |
26 | |
27 See example.html for an example. | |
28 | |
29 <input type="date" class="date" min="2016-01-01" max="2016-12-31" /> | |
30 | |
31 An input should have the classname "date" set. | |
32 | |
33 | |
34 Author | |
35 ------ | |
36 | |
37 Hiltjo Posthuma <[email protected]> |