0
I have this input
<input type="text" readonly="readonly" class="form-control form-sm input_digitacao">
And I have this script
$(".numeros_ligacao li a").click(function(){
digito = $(this).html();
$(".input_digitacao").val(digito);
})
the variable digit returns me a single number, when clicking, inside this input appears the corresponding number, but I want you to add one after the other, not replace as you are doing. Is there any way?