Awesomplete
Awesomplete

https://leaverou.github.io/awesomplete/

Awesomplete is a Javascript UI library that provides an autocomplete feature for input fields in web applications. It allows users to enter text into an input field and then suggests possible matches based on what has been typed so far. Awesomplete is easy to use and highly customizable, allowing developers to define the data source for autocomplete suggestions and the style of the dropdown list that appears. It also provides various features like keyboard navigation, multiple selection, and filtering options. Awesomplete can be integrated into any web application easily by including its script file and initializing it on input fields that require autocomplete functionality. Overall, Awesomplete is a useful tool for enhancing user experience on web applications that require data entry or search functionality.

Read more

5,754 Companies using Awesomplete

NameLinksEmployeesRevenueTrafficCountrySEOIndustry
logo
AGC Portage Salarial

Porteur de Succès - Accom..

53$21K - $2K$69K france72%
logo
The Medical Export Group ..

together for global healt..

104$9K - $28K$79K netherlands72%
logo
Design Clarity

global creative design co..

9$37K - $18K$10K united kingdom..79%
logo
Foxintelligence

unique insights based on ..

132$8K - $43K$61K france93%
logo
Asset Management Group, I..

Financial Planning Pays O..

20$50K - $46K$765 united states ..69%
logo
Caterham

pure. simple. fun.

99$48K - $8K$72K united kingdom..91%
logo
KOBALTT

le recrutement hautes com..

120$6K - $23K$887 france88%
logo
ASI Doors, Inc.

when quality is required ..

48$18K - $38K$936 united states ..99%
logo
Causeway Capital Manageme..

an independently owned in..

115$3K - $45K$27K united states ..84%
logo
KaTom Restaurant Supply, ..

working to create legenda..

167$35K - $34K$1M united states ..36%
logo
Aerialtronics

an end-to-end developer t..

5$39K - $34K$655 netherlands85%
logo
FlexCareers

opening the doors on flex..

16$15K - $48K$53K australia69%
logo
Fastigo

fastighetsbranschens arbe..

26$37K - $48K$85K sweden98%
logo
Les Maisons du Voyage (Gr..

ici commence l'ailleurs

106$34K - $5K$185K france86%
logo
Healing Hotels of the Wor..

more than a hotel brand: ..

14$28K - $28K$22K germany90%

Want to download the entire list?

Enter your email and download the entire list of 5,754+ companies

We care about your data. Read our privacy policy.

How to use Awesomplete

Awesomplete is a simple yet powerful autocomplete library written in JavaScript. It can be easily integrated into any web application to enhance the user experience by providing auto-complete functionality for input fields. Here's how you can use it:

  1. First, download and include the Awesomplete library in your project. You can do this by downloading the library from the official website or by using a package manager like npm or yarn.

  2. Next, create an input field in your HTML page and add the "awesomplete" class to it. This tells the library to apply autocompletion to this field.

    <input class="awesomplete" />
  3. Initialize the Awesomplete object with the input field as a parameter. You can also specify options like minimum characters required to trigger autocomplete, the list of suggestions, etc.

    new Awesomplete(inputField, { minChars: 3, list: ["Apple", "Banana", "Cherry"] });
  4. Finally, you need to provide a list of suggestions for the input field. This can be done in two ways:

    1. Static list: You can provide a static list of suggestions as an array.

      new Awesomplete(inputField, { minChars: 3, list: ["Apple", "Banana", "Cherry"] });
    2. Dynamic list: You can also fetch the suggestions dynamically from a server using AJAX.

      new Awesomplete(inputField, { minChars: 3, replace: function (text) { this.input.value = text.value; }, list: function (text, callback) { // make an ajax call to fetch the suggestions $.get("/api/suggestions?query=" + text, function (data) { callback(data); }); } });

That's it! You should now have a working autocomplete field on your web page using Awesomplete.

Make your sales data-driven.

Website's technology stack, including its CMS, ecommerce platform, and payment processor, along with details about the industry, company and its contacts.

GDPR Compliant

CCPA Compliant

SOC2 Compliant

App screenshot