I have used the following code to open accordions on pages, New York gun laws is a page it works on.
/opens closes accordions/
jQuery(function($) {
$(’.acc-btn-toggle’).on(‘click touchend’, function(e) {
e.preventDefault();
$(’.x-acc-header, .x-accordion-toggle’).trigger(‘click’);
})
})
However when I use it on posts it will not work. This is the post I am trying to get it to work on. Do I need to modify the code for posts?
