Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andrewjbateman/javascript-ajax-typeahead
:clipboard: javascript ajax add suggestions when typing into text box, Javascript30 youtube tutorial from Wes Bos
https://github.com/andrewjbateman/javascript-ajax-typeahead
ajax bootstrap4 css html javascript javascript30
Last synced: 1 day ago
JSON representation
:clipboard: javascript ajax add suggestions when typing into text box, Javascript30 youtube tutorial from Wes Bos
- Host: GitHub
- URL: https://github.com/andrewjbateman/javascript-ajax-typeahead
- Owner: AndrewJBateman
- Created: 2018-11-16T11:52:36.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-27T07:55:46.000Z (over 4 years ago)
- Last Synced: 2024-11-07T03:35:46.378Z (about 2 months ago)
- Topics: ajax, bootstrap4, css, html, javascript, javascript30
- Language: JavaScript
- Homepage:
- Size: 201 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# :zap: Javascript Ajax Type-ahead
Wes Bos Youtube Tutorial: [Ajax Type Ahead with fetch() - #JavaScript30 6/30](https://www.youtube.com/watch?v=y4gZMJKAeWs&list=PLu8EoSxDXHP6CGK4YVJhL_VWetA865GOH&index=6).
*** Note: to open web links in a new window use: _ctrl+click on link_**
## :page_facing_up: Table of contents
* [General info](#general-info)
* [Screenshots](#screenshots)
* [Technologies](#technologies)
* [Setup](#setup)
* [Features](#features)
* [Status](#status)
* [Inspiration](#inspiration)
* [Contact](#contact)## :books: General info
* Tutorial Code using javascript & AJAX to add suggestions when typing into text box.
## :camera: Screenshots
![Example screenshot](./img/ahead.png).
## :signal_strength: Technologies
* [Javascript v1.9 ECMA-262 ECMAScript 2018](http://www.ecma-international.org/publications/standards/Ecma-262.htm)
* [jQuery slim CDN v3.3.1"](https://code.jquery.com/)
* [Bootstrap CDN v4.3.1](https://getbootstrap.com/docs/4.3/getting-started/introduction/)
* [JSON endpoint list of cities with data.](https://gist.githubusercontent.com/Miserlou/c5cd8364bf9b2420bb29/raw/2bf258763cdddd704f8ffd3ea9a3e81d25e2c6f6/cities.json)## :floppy_disk: Setup
* Open index.html in browser. If any code is changed the browser needs to be refreshed.
## :computer: Code Examples
* Function to match search string with city or state name.
```javascript
function findMatches(wordToMatch, cities) {
return cities.filter(place => {
const regex = new RegExp(wordToMatch, 'gi');
return place.city.match(regex) || place.state.match(regex)
});
}
```## :cool: Features
* Function to add comas in population number. Latest versions of jQuery Slim, AJAX and Bootstrap used
## :clipboard: Status & To-Do List
* Status: Working
* To-Do: N/A## :clap: Inspiration
* Wes Bos Youtube Tutorial: [Ajax Type Ahead with fetch() - #JavaScript30 6/30](https://www.youtube.com/watch?v=y4gZMJKAeWs&list=PLu8EoSxDXHP6CGK4YVJhL_VWetA865GOH&index=6)
## :envelope: Contact
* Repo created by [ABateman](https://www.andrewbateman.org) - you are welcome to [send me a message](https://andrewbateman.org/contact)