Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Turn off animation Jquery Accordion

How can i turn off the animation effect on this accordion? so that when I click the sections it just opens instantly, rather than slow drop down?

www.immateriallabour.com/EBH-Pub

      <script>
$(function() {
$( "#accordion" ).accordion({
  collapsible: true
});
({ animate: false });
});
</script>
like image 303
Ben Vickers Avatar asked Nov 17 '25 16:11

Ben Vickers


1 Answers

If you want to prevent the accordion animation, you should pass the appropriate property as part of the configuration object, as follows:

 $(function () {
     $("#accordion").accordion({
         collapsible: true,
         animate: false
     });
 });
like image 119
MasterAM Avatar answered Nov 20 '25 11:11

MasterAM



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!