I'm trying to modify the code found at http://jqueryui.com/demos/autocomplete/#multiple to use data generated from my database instead of using the data from the list
$(function() {
var availableTags = [
"ActionScript",
"AppleScript",
"Asp",
"BASIC",
"C",
"C++",
"Clojure",
"COBOL",
"ColdFusion",
"Erlang",
"Fortran",
"Groovy",
"Haskell",
"Java",
"JavaScript",
"Lisp",
"Perl",
"PHP",
"Python",
"Ruby",
"Scala",
"Scheme"
];
function split( val ) {
return val.split( /,\s*/ );
}
function extractLast( term ) {
return split( term ).pop();
}
$( "#tags" )
// don't navigate away from the field on tab when selecting an item
.bind( "keydown", function( event ) {
if ( event.keyCode === $.ui.keyCode.TAB &&
$( this ).data( "autocomplete" ).menu.active ) {
event.preventDefault();
}
})
.autocomplete({
minLength: 0,
source: function( request, response ) {
// delegate back to autocomplete, but extract the last term
response( $.ui.autocomplete.filter(
availableTags, extractLast( request.term ) ) );
},
focus: function() {
// prevent value inserted on focus
return false;
},
select: function( event, ui ) {
var terms = split( this.value );
// remove the current input
terms.pop();
// add the selected item
terms.push( ui.item.value );
// add placeholder to get the comma-and-space at the end
terms.push( "" );
this.value = terms.join( ", " );
return false;
}
});
});
EDIT: I am using the code below on other pages to successfully generate single keywords from my database so I know the *generate_keywords.php* script works and returns data but I would like to display multiple existing keywords just like in the jQuery example:
$("#text-keywords").autocomplete({
source: "generate_keywords.php",
minLength: 2,
select: function(event, ui) {
$('#text-keywords').val(ui.item.label);
}
});
However, I cannot figure out how to make use of the "function( request, response )" from the example code above to return data from my *generate_keywords.php* script. I have played around with using the ajax() function but I haven't had any luck.
Thanks!