Hey @waynepatt58,
That is possible with custom Javascript. Below is a sample code that should be added in Content JS. I’d recommend that you watch how to use it at https://youtu.be/C0SKvLotrfI. The button needs to have no href or URL to prevent the page from scrolling to the top.
jQuery(function($) {
$('.acc-btn-toggle').on('click touchend', function() {
$('.x-acc-header, .x-accordion-toggle').trigger('click');
})
})
Please note that the code provided is only a guide. I’d recommend that you learn jQuery from http://jquery.com/. We can’t support issues that might arise from the use of custom code and further enhancement of it. For that, you’d need to consult with a third party developer.
Hope that helps and thank you for understanding.