0
I’d like to add animation to my vanish div, I was looking at this topic Hide div when you click it, only that it did not solve because my version of Jquery is more updated.
Knob:
<button type="submit" class="btn btn-success" onclick="Mudarestado('oculto')">Importar</button>
Code:
<script>
$('#aviso').on("click", function () {
$(this).hide("slow");
});
function Mudarestado(el) {
var display = document.getElementById(el).style.display;
if (display == "none")
document.getElementById(el).style.display = 'block';
else
document.getElementById(el).style.display = 'none';
}
</script>
The answer I gave worked friend ? Or is there something else that is not working ?
– Pedro Augusto