Skip to product information
1 of 1

Aromalilycafe

Gourmet Raspberry Jam

Gourmet Raspberry Jam

Regular price $10.00 AUD
Regular price Sale price $10.00 AUD
Sale Sold out
Tax included. Shipping calculated at checkout.
Try our homemade raspberry jam made from fresh raspberries, using a traditional family recipe.
View full details
document.addEventListener('DOMContentLoaded', function() { const productForm = document.querySelector('product-form form'); if (!productForm) return; const qtyInput = productForm.querySelector('input[name="quantity"]'); const variantIdInput = productForm.querySelector('input[name="id"]'); if (!qtyInput || !variantIdInput || !window.variantLimits) return; function applyVariantLimits() { const vid = variantIdInput.value; const limits = window.variantLimits[vid]; if (!limits) return; let min = parseInt(limits.min) || 1; let max = limits.max !== null ? parseInt(limits.max) : null; qtyInput.min = min; let current = parseInt(qtyInput.value) || 0; if (current < min) current = min; if (max && max > 0) { qtyInput.max = max; if (current > max) current = max; } else { qtyInput.removeAttribute('max'); } qtyInput.value = current; } applyVariantLimits(); productForm.addEventListener('change', applyVariantLimits); });