I am trying to run js function when customizer section is expended and cant seem to find any event to do so.
Something like this
wp.customize.bind( 'ready', function() {
wp.customize.section.bind( 'expand', function() {
console.log('hello');
});
} );
or
wp.customize.bind( 'ready', function() {
wp.customize.section.on( 'opened', function() {
console.log('hello');
});
} );
or anything that triggers when section is active/activated/expanded/opened.
Any help is appreciated!