Skip to content

Instantly share code, notes, and snippets.

@Pavracer
Created November 19, 2017 19:53
Show Gist options
  • Select an option

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

Select an option

Save Pavracer/5a8711a56f8848a103f70f7235911d17 to your computer and use it in GitHub Desktop.
accordion_closed.js
<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