Table Rental

Table Rental

$12.00
{{option.name}}: {{selected_options[option.position]}}
{{value_obj.value}}

Would you like to add a table to your order? Yes No // Show the upsell prompt when the page loads document.addEventListener('DOMContentLoaded', function() { document.getElementById('upsell-product').style.display = 'block'; }); // Function to add the table product to the cart function addTableToCart() { fetch('/cart/add.js', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Accept': 'application/json' }, body: JSON.stringify({ items: [{id: YOUR_TABLE_PRODUCT_VARIANT_ID, quantity: 1}] }) }) .then(response => response.json()) .then(data => { console.log('Table added to cart', data); closeUpsell(); }) .catch(error => console.error('Error:', error)); } // Function to close the upsell prompt function closeUpsell() { document.getElementById('upsell-product').style.display = 'none'; }

Show More Show Less