Possible Duplicate:
Trying to get tag-it to work with an AJAX call
How can I get tags from the database for autocomplete.
I thing I can handle the php part by myself :)
This is the minimal code for the autocomplete feature and I really don't get it how to post the tag to php.
$(function(){
$('#tags').tagit({
availableTags: ['c++', 'java', 'php', 'coldfusion', 'javascript', 'asp', 'ruby', 'python', 'c', 'scala', 'groovy', 'haskell', 'perl', 'erlang', 'apl', 'cobol', 'go', 'lua']
});
});
you can find the full code here: http://aehlke.github.com/tag-it/css/jquery.tagit.css
so, how should it look like when all is done? – Dave Mar 19 '12 at 15:32