Branch: 86 South Main Street, Pine Island
0 $0.00
items in your cartto quote To cart
Ooops no items were found.
Try something else.
Ok
Loading…
Search & Filter
Age Verification

Pressure Relief Valves

653 items found
Sort by
Danco 80132 Sillcock Key, Metal
Plumb Pak K2058WHALF Straight Valve, 1/2 x 3/8 in Connection, FIP x CTS, 125 psi Pressure, Brass Body
Plumb Pak K2048WHALF Angle Valve with Hammer Arrestor, 1/2 x 3/8 in Connection, FIP x CTS, 125 psi Pressure, Brass Body
BrassCraft G2CR09XCD Stop Valve, 1/2 x 1/4 in Connection, Compression, 125 psi Pressure, Brass Body, 2.16 in L
Apollo APXV11 Ball Valve, 1 in Connection, Barb, 200 psi Pressure, Brass Body
Cash Acme 23061LF Straight Stop, 1/2 in Connection, MPT, Brass Body
Apollo APXSCV3434 Sillcock, 3/4 in Connection, Barb x MGHT, 200 psi Pressure, Quarter-Turn Actuator, Brass Body
Apollo APXV12WD Ball Valve with Drain and Mounting Pad, 1/2 in Connection, Barb, 200 psi Pressure, Lever Actuator
Apollo APXV34WD Ball Valve with Drain and Mounting Pad, 3/4 in Connection, Barb, 200 psi Pressure, Lever Actuator
Apollo APXVT121238 Dishwasher Tee Valve, 1/2 x 3/8 in Connection, Barb x Compression, 200 psi Pressure, Brass Body
BrassCraft G2R15XCD Stop Valve, 3/8 x 3/8 in Connection, Compression x FIP, 125 psi Pressure, Brass Body, 2.12 in L
BrassCraft G2CR19X CD Stop Valve, 1/2 x 3/8 in Connection, Compression, 125 psi Pressure, Brass Body, 2.16 in L
Total 653 products
show per page
SEARCH ×

/** * ⚡ EvoX Variant Script Combo * Handles: preload spinner + instant cache-based switching + EvoX AJAX polling fallback */ (function () { // === 1. Loading effect on variant change (instant feedback) === document.addEventListener('change', function (e) { if (e.target.matches('.product-option select, .variant-selector select')) { console.log("Variant change triggered – showing loading UI"); const productContainer = document.querySelector('.productView, .product'); if (productContainer) { productContainer.style.opacity = '0.5'; productContainer.style.transition = 'opacity 0.2s ease-in-out'; } } }); // === 2. Static Variant Cache (instant DOM update with no AJAX) === const variantCache = { "305446082": { image: "https://cdn11.bigcommerce.com/s-xxxxx/images/stencil/1280x1280/products/1175/10474/calm-water.jpg", price: "$45.99", description: "Trex Enhance® Naturals in Calm Water finish with natural wood grain texture. Low-maintenance composite decking." }, "305446083": { image: "https://cdn11.bigcommerce.com/s-xxxxx/images/stencil/1280x1280/products/1175/10476/toasted-sand.jpg", price: "$48.49", description: "Trex Enhance® Naturals in Toasted Sand finish. Durable, splinter-free and fade-resistant decking." }, "305446084": { image: "https://cdn11.bigcommerce.com/s-xxxxx/images/stencil/1280x1280/products/1175/10478/rocky-harbor.jpg", price: "$48.49", description: "Rocky Harbor color in the Trex Enhance® Naturals collection. Rich tone, weather-resistant surface." }, "305446087": { image: "https://cdn11.bigcommerce.com/s-xxxxx/images/stencil/1280x1280/products/1175/10480/clam-shell.jpg", price: "$42.49", description: "Trex Enhance® Basics in Clam Shell finish. Budget-friendly, easy to clean, and stain-resistant." } }; document.addEventListener('change', function (e) { if (e.target.name === 'VariantID') { const variantId = e.target.value; const variant = variantCache[variantId]; if (variant) { console.log("⚡ Switching to variant:", variantId); const imageEl = document.querySelector('.productView-image img, .product-image img'); if (imageEl) imageEl.src = variant.image; const priceEl = document.querySelector('.product-price .price, .productView-price .price'); if (priceEl) priceEl.textContent = variant.price; const descEl = document.querySelector('.product-description, .productView-description'); if (descEl) descEl.textContent = variant.description; } } }); // === 3. EvoX AJAX fallback (just in case) === window.evoXProductChangeCallback = function () { console.log("EvoX AJAX response received – polling for updated DOM"); const start = Date.now(); const timeoutLimit = 3000; const interval = setInterval(() => { const imageEl = document.querySelector('.product-image img, .product-main-image img'); const priceEl = document.querySelector('.product-price .price, .pricing .price, .productView-price .price'); const descEl = document.querySelector('.product-description, .productView-description, .description'); if (imageEl && priceEl && descEl) { console.log("DOM updated via AJAX"); const imageSrc = imageEl.src; const price = priceEl.textContent.trim(); const description = descEl.textContent.trim(); console.log("Image:", imageSrc); console.log("Price:", price); console.log("Description:", description); const productContainer = document.querySelector('.productView, .product'); if (productContainer) productContainer.style.opacity = '1'; clearInterval(interval); } if (Date.now() - start > timeoutLimit) { console.warn("Timeout: EvoX DOM didn't load in time"); clearInterval(interval); } }, 50); }; })();