Untitled

 avatar
unknown
plain_text
10 months ago
583 B
4
Indexable
window.addEventListener('message', receiveMessage, false);

        function receiveMessage(event) {
            // Check the content of the message sent and then toggles to show overlay
            if (event.data === 'showShoppingCart') { 
                document.querySelector('#overlay').classList.toggle('active');
            }
        }

//sends message to parent function. Used to show cart
function sendMessageToParent() {
    window.parent.postMessage('showShoppingCart', '*');
}

document.querySelector(".icon").addEventListener("click", sendMessageToParent)
Editor is loading...
Leave a Comment