0
I have an autocomplete that works perfectly. How do I pick up the searched item and place it inside a div? Type x-salad search and when you click it put x-salad inside the div. The function Autocompleteselecthandler(Event, ui) returns nothing.
// BUSCA COM AUTOCOMPLETE
var resultadoLanche = [];
// Captura o retorno do retornaCliente.php
$.ajax({
url: urlBase + "produtos?filter[categoria_id]=" + idcategoria,
method: 'GET',
success: function(retorno)
{
retorno.data.forEach(function(item)
{
resultadoLanche.push(item.nome);
});
},
error: function(XMLHttpRequest, textStatus, errorThrown)
{
alert("Status do Servidor: " + textStatus);
alert("Erro do Servidor: " + errorThrown);
}
});
// ativar o autocomplete
$('#buscarProduto').autocomplete(
{
source: resultadoLanche,
select: function(event, ui)
{
$('#buscarProduto').val(ui.item.value);
},
minLength: 3
}
);
function AutoCompleteSelectHandler(event, ui)
{
alert('teste');
var teste = $('#buscarProduto').val(ui.item.value);
}
Is that it? https://answall.com/questions/155746/pega-evento-de-click-no-valor-do-autocomplete-do-jquery/155752#155752
– Marconi