javascript - jQuery UI autocomplete drop down not displaying -
i trying use jquery ui autocomplete feature search spotify's music library. while passes well, , successful response: there no drop down suggestions. instance searching "time" , wanted see: time hans zimmer <--(this searching for) back in time pitbull elevate big time rush etc. here javascript code: <script>$(function() {$( "#spotify_song_search" ).autocomplete({source: function(request, response) { $.get("http://ws.spotify.com/search/1/track.json", { q: request.term },function( data ) { alert(data); response(data);}); },success: function(data) { // pass data response callback alert(data); response(data); }});});</script> i must doing wrong. checked jquery docs here: http://jqueryui.com/demos/autocomplete/ doesn't give explanation why occur. , added alerts see if @ least response, do, returns [object object] . need display search results? error: uncaught...