1
I need to place a gif load while a function performs. The function simply changes the value of various products, when the user clicks the gif button should appear and when the inputs are filled it should disappear.
$("#aumentar").click(function(){
var ajuste = $("#valor").val();
$('.gif').css('display','block');
trocaValoresInputs(ajusteDeValor);
$('.gif').css('display','none');
});
has several similar questions on the site like https://answall.com/q/275156/57220 and this https://answall.com/q/107933/57220
– Ricardo Pontual