2
I’m having a hard time finding a way to block multiples toggles in my code. That is when the client clicks several times in the toggle field, the field keeps appearing and disappearing several times. I wonder how I can make him do it open up or close the field only when the action is not being executed.
Code that makes Toogle:
<script>
(document).ready(function(){
$(".botao").click(function(){
$(this).children( ".classe" ).slideToggle();
});
});
</script>
From now on Thank you!