Pro - close model window on click of button

I have this page: http://staging3.kidsmagicworld.com.au/sms-header-test/

in the upper right corner is a help button that pops up help options

when you click the last button the content on the page loads the FAQ section- I would love that pop up to vanish after that button is clicked but I don’t know how

jQuery(document).ready(function($){
$(’.close-lightbox-btn’).click(function(){
$(’.x-modal-close’).click();
});
});

and give the button that class name

this has been solved!!!

Glad to hear you got it sorted. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.