diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-03-28 19:17:51 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-03-28 19:17:51 +0200 |
commit | 833dde3f53fe4f5101c299245d9fa02e0ae51c80 (patch) | |
tree | 08833fc93b0af273085553c95e4c86f2d61a1958 /data/templates/editbookmark.tpl.php | |
parent | a5bd7789297378be3fb8dc3814c6649ea82a88d8 (diff) | |
download | semanticscuttle-833dde3f53fe4f5101c299245d9fa02e0ae51c80.tar.gz semanticscuttle-833dde3f53fe4f5101c299245d9fa02e0ae51c80.tar.bz2 |
jquey-autocomplete works!
Diffstat (limited to 'data/templates/editbookmark.tpl.php')
-rw-r--r-- | data/templates/editbookmark.tpl.php | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/data/templates/editbookmark.tpl.php b/data/templates/editbookmark.tpl.php index 6ce10b3..f440740 100644 --- a/data/templates/editbookmark.tpl.php +++ b/data/templates/editbookmark.tpl.php @@ -142,19 +142,21 @@ jQuery(document).ready(function() { jQuery("input#tags").autocomplete({ - minLength: 0, + minLength: 1, source: function(request, response) { // delegate back to autocomplete, but extract the last term response( + /* $.ui.autocomplete.filter( availableTags, extractLast(request.term) ) - /* - $.getJSON( "search.php", { - term: extractLast( request.term ) - }, response ); */ + $.getJSON( + "<?php echo ROOT ?>ajax/getcontacttags.php", + { beginsWith: extractLast(request.term) }, + response + ) ); }, |