jQuery.fn.evolutionTagTextBox
This plugin implements the type-ahead suggestions within a text input field for a set of tags. It also automates the opening of the tag selection modal.
Usage
Initializes the tag text box plugin. Options include:
$('SELECTOR').evolutionTagTextBox(options)
Options
allTags
: An array of HTML unencoded tags that can be used for auto-completing and selecting.
Methods
openTagSelector
Opens the tag selector modal.
$('SELECTOR').evolutionTagTextBox('openTagSelector')
val
Get the list of tags (comma-separated):
$('SELECTOR').evolutionTagTextBox('val')
Set the list of tags (comma-separated):
$('SELECTOR').evolutionTagTextBox('val', 'tag1,tag2')