typedata-suggestions
v1.0.2
Published
JavaScript-плагин для сервиса подсказок TypeData.net
Downloads
16
Maintainers
Readme
JavaScript - плагин Typedata
JavaScript-плагин для сервиса подсказок TypeData.net.
Установка
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/typedata-suggestions@latest/dist/typedata-suggestions.css">
...
</head>
<body>
...
<div class="typedataSuggestions_wrapper">
<input id="typedataSuggestions" type="search" spellcheck=false autocorrect="off" autocomplete="off" autocapitalize="off">
</div>
...
<script src="https://cdn.jsdelivr.net/npm/typedata-suggestions@latest/dist/typedata-suggestions.min.js"></script>
<script>
const typedataSuggestionsJS = new typedataSuggestions({
token: 'TOKEN',
events: {
input: {
selection: (event) => {
const selection = event.detail.selection.value;
typedataSuggestionsJS.input.value = selection.value;
alert(JSON.stringify(selection));
}
}
}
});
</script>
...
</body>
</html>
LICENSE
Copyright (c) 2023 Rave Technology. Licensed under the MIT license.