Custom field for entering tags in the form.
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">
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
var tags = new Tags('#tagged');
tags.addTags(['one', 'two', 'three']);
tags.getTags(); // return one,two,three