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 (950B)
---
1 datalist
2 ========
3
4 relatively small dropdown filter / autocomplete script.
5
6
7 FEATURES
8 --------
9
10 - Small:
11 - Filesize: +- 12KB.
12 - Lines: +- 420, not much code, so hopefully easy to understand.
13 - No dependencies on other libraries like jQuery.
14 - (Graceful) fallback to HTML5 datalist if Javascript is disabled for inline
15 datalist.
16 - Filtering values: case-insensitively, tokenized (separated by space).
17 - Supports querying a remote server for results using a JSON XMLHttpRequest.
18 - Show a table with multiple columns in the list, with nice alignment of items.
19 - Support HTML, for example for thumbnail images.
20 - Support a callback function per cell, row or to reformat the value.
21 - Permissive ISC license, see LICENSE file.
22 - Supported browsers are:
23 - Firefox and Firefox ESR.
24 - Chrome and most recent webkit-based browsers.
25
26
27 EXAMPLES
28 --------
29
30 See example.html for an example.
31
32
33 Author
34 ------
35
36 Hiltjo Posthuma <hiltjo@codemadness.org>