Skip to content

Instantly share code, notes, and snippets.

@NightZpy
Created April 17, 2015 17:57
Show Gist options
  • Save NightZpy/e160b9b2648e3535d202 to your computer and use it in GitHub Desktop.
Save NightZpy/e160b9b2648e3535d202 to your computer and use it in GitHub Desktop.
Chosen Ajax
$('.chzn-choices input').autocomplete({
source: function( request, response ) {
$.ajax({
url: "/change/name/autocomplete/"+request.term+"/",
dataType: "json",
beforeSend: function(){$('ul.chzn-results').empty();},
success: function( data ) {
response( $.map( data, function( item ) {
$('ul.chzn-results').append('<li class="active-result">' + item.name + '</li>');
}));
}
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment