Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

taggify

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

taggify

Create tags by typing

  • 1.2.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

taggify

Small library to create tags by typing

How to use it?

The usage is simple:

  1. Create container element where taggify will be installed, like:

    <div class="taggify"></div>
    
  2. Include Taggify library script to your HTML code:

    <script src="taggify.min.js"></script>
    
  3. Then start using in your JS script:

    <script>
    (function () {
        'use strict';
    
        new window.Taggify();
    })();
    </script>
    

Configuration

Taggify library uses a configuration object containing following properties:

containerSelector {String}

Container selector to find HTML node to initialize taggify element. By default: '.taggify'

containerNode {HTMLElement}

Container node to initialize taggify element. Will be used instead of containerSelector, if defined.

autocomplete {Boolean}

Indicator whether to use autocomplete callback. By default: false

autocompleteCallback {Function}

The autocomplete callback. It takes 2 params:

  • value - the taggify input value,
  • callback - the callback where data should be provided in order to generate tags

inputDelay {Number}

The input event callback delay. After this time, the tags are created. It's used to increase performance of the solution. By default: 100

inputLabel {String}

The text to display to a user as a label. By default: 'Start typing ...'

allowDuplicates {Boolean}

Indicator whether to allow duplicated tags. Used when autocomplete is turned off. By default: false

hotKeys {Array}

List of hot keys which generate tags when autocomplete is off. The list contains key codes, like - coma is 188, but enter is 13. By default: [13, 188]

displayLabel {Boolean}

Flag indicating whether an input label should be displayed

Methods

updateTags

The method allows to create tags based on provided array of strings

const tags = ['a','b','c'];

taggify.updateTags(tags);

Keywords

FAQs

Package last updated on 29 Nov 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc