Nari Nakhre
Home
Categories
No categories available
Cart
0
Contact Us
Check
Nari Nakhreâ„¢
Premium Handcrafted Jewelry
Shop Now
.then(res => res.json()) .then(data => { if (data.status === 'success') { document.getElementById('cart-count').innerText = data.new_total; toggleCounterUI(container, qty); } }); } function toggleCounterUI(container, qty) { const btn = container.querySelector('.add-to-cart-btn'); const ctr = container.querySelector('.unit-counter'); const dpl = container.querySelector('.qty-display'); if (qty > 0) { btn.classList.add('hidden'); ctr.classList.remove('hidden'); ctr.classList.add('flex'); dpl.innerText = qty; } else { btn.classList.remove('hidden'); ctr.classList.add('hidden'); ctr.classList.remove('flex'); } } function verifyService() { const pin = document.getElementById('pincode-input').value; const res = document.getElementById('pincode-result'); fetch(`/api/delhivery/check/${pin}`).then(r => r.json()).then(data => { res.innerText = data.status ? "Deliverable" : "Not Serviceable"; res.className = data.status ? "text-green-600" : "text-red-600"; }); }