@knadh/floatype
v1.2.2
Published
A tiny, zero-dependency, floating autocomplete / autosuggestion widget for textarea.
Downloads
604
Maintainers
Readme
floatype.js
A super tiny Javascript autocomplete / autosuggestion library for rendering floating suggestion widgets in textareas. Zero dependencies and ~1200 bytes minified + gzipped.
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.