I have a navbar in bootstrap
<nav class="navbar navbar-default" role="navigation" id="barranav">
I tried to show and hide it with jquery with
$( "#barranav" ).slideDown('fast');
and
$( "#barranav" ).slideUp('fast');
And it works! But without any transition effect... any idea of why this occurs?
Thank you a lot