README - jscancer - Javascript crap (relatively small) | |
git clone git://git.codemadness.org/jscancer | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
README (1253B) | |
--- | |
1 This is a collection of Javascripts. | |
2 | |
3 | |
4 Goals | |
5 ----- | |
6 | |
7 - Zero dependencies, no dependencies on external Javascript libraries su… | |
8 jQuery. | |
9 - Functional for 90% of the tasks. | |
10 - Be compatible with most commonly used browsers (but not ancient browse… | |
11 - If possible fallback to native browser behaviour. | |
12 - Provide consistent behaviour for things like a datepicker, datalist an… | |
13 on until the major browsers will support it consistently natively. | |
14 | |
15 | |
16 Issues with native behaviour | |
17 ---------------------------- | |
18 | |
19 Datepicker, <input type="date" />: | |
20 ---------------------------------- | |
21 | |
22 - No native control visible in Firefox, regular textbox, but validation | |
23 attributes work. | |
24 - Native control in Chrome. | |
25 - Native control in Edge. | |
26 | |
27 | |
28 Datalist, <datalist>: | |
29 --------------------- | |
30 | |
31 Inconsistent autocomplete behaviour, for example: | |
32 | |
33 Filter: | |
34 - In Firefox filter part of items in the list. | |
35 - In Chrome filter from start of a label in the list, searches on | |
36 <option value /> if set, but not the label. | |
37 - In IE/Edge filter does not work. | |
38 | |
39 Display: | |
40 - In Firefox shows label but not the value, completes with value if set. | |
41 - In Chrome shows label and the value, completes with value if set. | |
42 - In IE/Edge shows label but not the value, completes with value if set. |