Untitled
unknown
plain_text
a year ago
583 B
6
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