We\'ve installed \'bootstrap-tagsinput.js\' and the \'typeahead\' plugin for doing a tyepahead drop down for tags for an input field in one of our forms. The hardcoded tags work
I think the source attribute should be a function.
Template.form.rendered = function() { // Initialise tags input $('.tags').tagsinput({ typeahead: { source: function(query) { return ['Amsterdam', 'Washington', 'Sydney', 'Beijing', 'Cairo']; } } }); };