Skip to content

Instantly share code, notes, and snippets.

@Pavracer
Created December 6, 2017 09:00
Show Gist options
  • Select an option

  • Save Pavracer/bfb21bc00fe51c2fe1aac50df345d787 to your computer and use it in GitHub Desktop.

Select an option

Save Pavracer/bfb21bc00fe51c2fe1aac50df345d787 to your computer and use it in GitHub Desktop.
<script id="close-toggle">
jQuery( document ).ready(function() {
jQuery('.et_pb_accordion .et_pb_toggle_open').addClass('et_pb_toggle_close').removeClass('et_pb_toggle_open');
jQuery('.et_pb_accordion .et_pb_toggle').click(function() {
$this = jQuery(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