✦ Verified product
test product
AUD 0.01
Printing Jet
Verified independent store
→
Booklet Printing Order Instant quote – fast turnaround Australia-wide 1. Configure Your Booklet Size A5 A4 (+30%) Pages 16pp 24pp (+20%) 32pp (+40%) Quantity 100 250 500 1000 2000
5000 2. Instant Price Unit Price: $0.00 Total Price: $0.00 3. Your Details Submit Order Request ✅ Request sent! We will contact you shortly. *Indicative pricing only. Final quote may vary. function basePrice(qty){ if(qty == 100) return 4.5; if(qty == 250) return 2.8; if(qty == 500) return 1.9; if(qty == 1000) return 1.2; if(qty == 2000) return 0.85; if(qty == 5000) return 0.55;} function updatePrice(){ let size = parseFloat(document.getElementById("size").value); let pages = parseFloat(document.getElementById("pages").value); let qty = parseInt(document.getElementById("qty").value); let unit = basePrice(qty) * size * pages; let total = unit * qty; document.getElementById("unit").innerText = unit.toFixed(2); document.getElementById("total").innerText = total.toFixed(0);} document.getElementById("size").onchange = updatePrice;document.getElementById("pages").onchange = updatePrice;document.getElementById("qty").onchange = updatePrice; updatePrice(); document.getElementById("orderForm").addEventListener("submit", function(e){ e.preventDefault(); document.getElementById("successMsg").style.display = "block";});