So I have a lightbox, but I want it to connect with a certain page so that when you close the lightbox, certain text changes (for example) on a certain page. Is there any way I can do this by making the lightbox communicate with that page/text? Thanks. Here’s the code for closing the lightbox:
export function button29_click(event) {
wixWindow.lightbox.close();
I really just want it to be something like:
exportfunction button29_click(event) { wixWindow.lightbox.close();
(lightbox communicates with page that it has been closed)
$w(‘#text35’).hide()
$w(‘#text36’).show()
So when the button that closes the lightbox is clicked, the text hides and shows