- Documentation (fiddle, examples, etc)
- Offer a minimum style (if you are not using FlatUIPro)
- Code cleanup - its my first jQuery plugin :)
- ...
- Multiple typeaheads
- Remote sources (like typeahead.js)
- Tokenize (allows only existing entries)
- Flat-UI-Pro classes
- ...
Just a bunch of tags:
$('#tags').multiTypeahead({
name: "tags",
valueKey: "name",
remote: 'tags.json?q=%QUERY'
});
Tokenizer allows existing entries only:
$('#recipients').multiTypeahead({
name: "recipients",
valueKey: "name",
remote: 'users.json?q=%QUERY',
tokenizer: true,
delimiter: [",", " "] // default
});
0.1.1
MIT License, full text of license see here
Free Software, Fuck Yeah!