Skip to main content
Version: 1.1.4

Plugin

E-commerce App's Add To Cart Function

Here is the sample below

function addToCart(productID) {
document.getElementById("makeupView").contentWindow.window.postMessage(
JSON.stringify({
addToCart: {
product_code: productID
}
}),
"*"
);
}