Привет! Подскажите как осуществить $.ajax в autocomplete
$(input).autocomplete({
source: function(request, response) {
$.ajax({
url: Drupal.settings.geo.path,
dataType: 'json',
data: {
act: 'get_other_cities',
country: $(selects['country']).val(),
value: request.term,
},
success: function(data) { <- вот тут не знаю как
response({
return{
}
}); <- и до сюда
}
});
},
autoFocus: true,
});
Как осуществить success?