JezK
Edit File: custom-readmore.js
jQuery(document).ready(function($) { // Event listener for expanding content $(document).on('YrmOpen', function() { // Custom code to execute when content is expanded console.log('Content expanded'); }); // Event listener for collapsing content $(document).on('YrmClose', function() { // Custom code to execute when content is collapsed console.log('Content collapsed'); }); // Toggle visibility of the content $('.yrm-more-button-wrapper, .yrm-less-button-wrapper').on('click', function() { var $content = $(this).closest('.expander-content'); $content.slideToggle(); }); });