@knadh/floatype

1.2.1 • Public • Published

floatype.js

A super tiny Javascript autocomplete / autosuggestion library for rendering floating suggestion widgets in textareas. Zero dependencies and ~1200 bytes minified + gzipped.

View demo

demo

Usage

Node

npm install @knadh/floatype
import { floatype } from @knadh/floatype;

floatype(document.querySelector("textarea"), {
	onQuery: async (val) => {
		// fetch() or whatever that fetches/generates results.
		return ["results", "here"];
	}
});

Check the demo source to see advanced usage and basic CSS styles.

ES6 module

Check the demo source to use the lib in <script> directly on an HTML page.

For dropdown suggestions on input boxes, see autocomp.js

Licensed under the MIT License.

/@knadh/floatype/

    Package Sidebar

    Install

    npm i @knadh/floatype

    Weekly Downloads

    57

    Version

    1.2.1

    License

    MIT

    Unpacked Size

    7.87 kB

    Total Files

    4

    Last publish

    Collaborators

    • knadh