I'm not able to list my Json in the jqueryUI autocomplete. In the browser console I see that it is calling more does not show at the time when I append the append in LI.
$(function(){
var mostraLista = "http://jsonplaceholder.typicode.com/users";
$.get(mostraLista, function(response){
var dados = response;
for(var i = 0; i < dados.length; i++){
var tudoJ = dados[i];
console.log(tudoJ.name);
$("<li>").text(tudoJ.email).appendTo(".ui-corner-all");
}
});
$("#tags").autocomplete({
source: mostraLista
});
});