Snippets

Merkulove Team Close Snitcher popup by click on custom element

Created by Dmitry Merkulov
const customCloseButton = document.querySelector( '#your-custom-button-id' );
const wrapper = document.querySelector('.mdp-snitcher#your-id');
if ( customCloseButton && wrapper ) {

    customCloseButton.addEventListener( 'click', () => {
        wrapper.click();
        wrapper.style.display = 'none';
    } );

}

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.