I am using the code below to send tags using the bootstrap input tag filter, I want to allow a comma in the tags. Please, help.
$('.tagsinput').tagsinput({ maxTags: 15, trimValue: true, confirmKeys: [13], allowDuplicates: false, onTagExists: function(item, $tag) { alert('Tag already exists') $tag.hide.fadeIn(); } });
twitter-bootstrap bootstrap-tags-input
Tiger
source share