Struggling with getting jquery slideToogle to work properly? I've found that it does the job when using the standard toggle (hide/show) method. Also, no issues arise when utilizing Bootstrap's v4 'collapse' feature. However, if you're seeking more customization and control over the animation speed, a custom jquery approach might be your best bet.
Check out my code snippet below:
<script>
$(document).ready(function(){
$("#reservas").click(function(){
$("#reservas_form").slideToggle("slow");
});
});
</script>