Created
August 19, 2015 15:29
-
-
Save mkrdip/bef526e0aa57e6d27f47 to your computer and use it in GitHub Desktop.
Close Divi Accordion by default
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
jQuery(function($){ | |
$('.et_pb_accordion .et_pb_toggle_open').addClass('et_pb_toggle_close').removeClass('et_pb_toggle_open'); | |
$('.et_pb_accordion .et_pb_toggle').click(function() { | |
$this = $(this); | |
setTimeout(function(){ | |
$this.closest('.et_pb_accordion').removeClass('et_pb_accordion_toggling'); | |
},700); | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment