http://jqueryui.com/demos/autocomplete/ , , . , HTTP- jQuery ajax- :
$( "#autocomplete" ).autocomplete({
minLength: 2,
source: function( request, response ) {
$.ajax({
url: "query.php",
data: { query: request.term},
success: function(data){
response(data);
},
error: function(jqXHR, textStatus, errorThrown){
alert("error handler!");
},
dataType: 'json'
});
}
});