FEATURES :
- Soft Clarino® palm material for unmatched comfort
- Silicone gripper on first and second finger
- 4-way stretch finger gussets
- Air-prene cuff with TPR wrist closure
- Touch screen friendly fingertip stitching
Use left/right arrows to navigate the slideshow or swipe left/right if using a mobile device
Choosing a selection results in a full page refresh.
Press the space key then arrow keys to make a selection.
document.addEventListener('DOMContentLoaded', function() {
const stockstatusElements = document.querySelectorAll('.stock-status');
stockstatusElements.forEach(function(element) {
const statusText = element.textContent.trim();
console.log(statusText); // This will log the stock status text
if (statusText === "In Stock") {
element.classList.add('in-stock');
} else if (statusText === "Out of Stock") {
element.classList.add('out-of-stock');
} else if (statusText === "PRE ORDER NOW") {
element.classList.add('pre-order-now');
} else if (statusText === "Special Order Only") {
element.classList.add('special-order-only');
}
});
});