Can you change the direction of the toggle () effect of JQuery? For example, I made a button that when clicking, it shows and closes a div
$('.botao').click(function(){
$('.div').toggle(700);
});
Only, that he kind of has an automatic animation. Left to right > > > I wanted the effect to start from the top down, in case, start showing the top of the div and finish showing everything when it came down. Can you do this with toggle ()? Or is there something you can do?