close
Skip to content

Latest commit

 

History

11 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tags

Custom field for entering tags in the form.

How to use

Add tags.min.css file in your document's head

<link rel="stylesheet" href="tags.min.css">

Add tags.min.js file in your page at the bottom of the body

<script src="tags.min.js"></script>

Plugin initialization

var tags = new Tags('#tagged'); // <input id="tagged">

API Methods

Available public methods after initialization

  • .getTags() return a list of all tags in the field
  • .addTags('string' || [array] ) You can add a single tag or array tag
  • .clearTags() clear the field tags
  • .destroy() destroy, if necessary

Example

var tags = new Tags('#tagged');
tags.addTags(['one', 'two', 'three']);
tags.getTags(); // return one,two,three

About

Custom field for entering tags in the form. Codepen -

Resources

Stars

15 stars

Watchers

3 watching

Forks

Releases

Packages

Used by

Contributors

Languages