README - jscancer - Javascript crap (relatively small)
(HTM) git clone git://git.codemadness.org/jscancer
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) 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 such as
8 jQuery.
9 - Functional for 90% of the tasks.
10 - Be compatible with most commonly used browsers (but not ancient browsers).
11 - If possible fallback to native browser behaviour.
12 - Provide consistent behaviour for things like a datepicker, datalist and so
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.