bobness / pmboard

A dashboard for product managers and startup founders to link user research, product features/plans, and evaluation results
MIT License
0 stars 0 forks source link

Enable tagsInput typeahead suggestions based on existing tags #11

Closed bobness closed 9 years ago

bobness commented 9 years ago
$('input').tagsinput({
  typeahead: {                  
    source: function(query) {
      return $.get('http://someservice.com');
    }
  }
});