You can create a range slider add-to-cart feature in Webflow using custom JavaScript and Webflow eCommerce components. Below are the steps to achieve this.
range
.1
).10
).1
).#quantity-display
).display: none
in the Style panel.Open Page Settings and add the following JavaScript inside the Before Body section:
```javascript
document.addEventListener("DOMContentLoaded", function () {
const slider = document.querySelector('input[type="range"]');
const quantityDisplay = document.querySelector("#quantity-display");
const quantityInput = document.querySelector('.w-commerce-commerceaddtocartform input[name="quantity"]');
if (slider && quantityDisplay && quantityInput) {
slider.addEventListener("input", function () {
quantityDisplay.textContent = slider.value;
quantityInput.value = slider.value;
});
}
});
```
This script will update both the displayed quantity and the hidden quantity input when the user moves the slider.
This solution links a range slider to Webflow’s Add to Cart button by updating the hidden quantity field with JavaScript. The selected value dynamically changes based on user interaction.