Description
A pair of turn signals
document.addEventListener('DOMContentLoaded', function () { const qtyInput = document.querySelector('input.qty'); const priceWrapper = document.querySelector('.summary .woocommerce-Price-amount'); if (qtyInput && priceWrapper) { // মূল দাম একবারই নিবো (যেমন 1200) const originalPrice = parseFloat(priceWrapper.textContent.replace(/[^0-9.]/g, '')); qtyInput.addEventListener('input', function () { const qty = parseInt(this.value) || 1; const updatedPrice = originalPrice * qty; priceWrapper.textContent = "৳" + updatedPrice.toFixed(2); }); } });
Reviews
There are no reviews yet.