Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/binghuan/javascript_simpleautocomplete
Coding quest from Mozilla
https://github.com/binghuan/javascript_simpleautocomplete
assignment javascript mozilla take-home-test webapp
Last synced: 13 days ago
JSON representation
Coding quest from Mozilla
- Host: GitHub
- URL: https://github.com/binghuan/javascript_simpleautocomplete
- Owner: binghuan
- Created: 2014-02-17T03:22:07.000Z (almost 11 years ago)
- Default Branch: gh-pages
- Last Pushed: 2018-04-10T08:28:48.000Z (over 6 years ago)
- Last Synced: 2023-08-02T04:08:49.086Z (over 1 year ago)
- Topics: assignment, javascript, mozilla, take-home-test, webapp
- Language: JavaScript
- Homepage: http://binghuan.github.io/javascript_simpleAutoComplete/autoComplete.html
- Size: 410 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
javascript_simpleAutoComplete
=============================link to launch the web app http://binghuan.github.io/javascript_simpleAutoComplete/autoComplete.html
link for this page.
an auto-complete widget on a text <input> with the following requirements:Implement an auto-complete widget on a text with the.
following requirements:-- Avoid using well-known UI libraries.
-- The dataset should contains around 100~1000 entries. Timezone names
in tzdata [1] is a good example, but you don't need to load the JSON
example [2] as-is.
-- User should be blocked from submit the input unless the input
matches one of the entries.
-- The whole thing should work when loading from http://localhost/ or
file:/// url, without server-side (e.g. PHP) logic.
-- Please take care of memory consumption and efficiency.
-- Consider making your code unit-testable and reusable.- [1] [https://en.wikipedia.org/wiki/Tzdata](https://en.wikipedia.org/wiki/Tzdata)
- [2] [https://github.com/mozilla-b2g/gaia/blob/master/shared/resources/tz.json](https://github.com/mozilla-b2g/gaia/blob/master/shared/resources/tz.json)##################
If you are interested in my works, please have a visit to my blog.
http://studiobinghuan.blogspot.tw/
and
http://bhtalk.blogspot.com
Coding quest from Mozilla.