Preload InLine Cart to increase loading speed
Overview
Use case
Sample request
HTML
<a href="#" class="btn btn-success" id="buy-button">Buy now!</a>JavaScript
window.addEventListener("load", (event) => {
TwoCoInlineCart.products.add({
code: "2CO3MONTHS",
qty: 1
});
TwoCoInlineCart.cart.preload();
});
window.document.getElementById('buy-button').addEventListener('click', function() {
TwoCoInlineCart.cart.reloadCart();
});Demo (using test mode)
Last updated
Was this helpful?