This product has multiple variants. The options may be chosen on the product page
Thanks for Subscribing!
We promise not to bombard your inbox. Keep an eye out for promotional offers, discounts and events from On Rope 1.
Use code "OR125" to receive 5% OFF your first order!
document.addEventListener('DOMContentLoaded', function() {
// Get the weight method dropdown
var weightMethodSelect = document.querySelector('.option-weight-method');
// Get the weight value field
var weightValueField = document.querySelector('.option-weight-value');
// Ensure both elements exist
if (weightMethodSelect && weightValueField) {
// Listen for changes to the weight method dropdown
weightMethodSelect.addEventListener('change', function() {
// If the selected method is not 'free', add the class to show the weight field
if (weightMethodSelect.value !== 'free') {
weightValueField.classList.add('display-weight-field');
} else {
// Otherwise, remove the class to hide the weight field
weightValueField.classList.remove('display-weight-field');
}
});
// Initialize visibility based on the default selection
if (weightMethodSelect.value !== 'free') {
weightValueField.classList.add('display-weight-field');
}
}
});
Reviews
There are no reviews yet.