Place upgrade orders with InLine Cart
Overview
Use case
Sample request
HTML
<a href="#" class="btn btn-success" id="buy-button">Buy now!</a>Javascript
Last updated
Was this helpful?
Was this helpful?
window.document.getElementById('buy-button').addEventListener('click', function() {
TwoCoInlineCart.products.add({
code: "74B8E17CC0"
});
TwoCoInlineCart.cart.setSubscription('IMKNNVEY13');
TwoCoInlineCart.billing.setEmail('john.doe@company.com');
TwoCoInlineCart.cart.setUpgrade(true);
TwoCoInlineCart.cart.checkout();
});