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

Insect & Pest Control

1189 items found
Sort by
Tomcat 0361710 Trap with Bait Cup
Tomcat 0362010 Live Catch Mouse Trap, Reusable, Plastic, 1 PK
Tomcat 0362210 Attractant Gel
Tomcat 0363410 Rodent Station, 9.88 in L, 8.5 in W, 4-1/2 in H, Plastic, Black
Tomcat 8105280 Mole Trap
Tomcat 0348304 Mole and Gopher Repellent Granule
Tomcat BL22244 Rat and Mouse Poison, 1 oz Pail
Tomcat BL22022 Rat and Mouse Poison, Granular, 3 oz Pail
Tomcat 0368306 Rodent Repellent, 275 sq-ft Coverage
Tomcat 368208 Rodent Repellent with Comfort Wand
Tomcat 0348206 Mole and Gopher Repellent, Ready-To-Spray, Repels: Armadillos, Burrowing Pests, Gophers, Moles, Voles
Tomcat 0368106 Rodent Repellent, 1000 sq-ft Coverage
Total 1189 products
show per page
SEARCH ×

/** * ⚡ EvoX AJAX Variant Handler – Optimized UX Version * Shows instant loading effect, polls DOM for update, and syncs product data */ (function () { // Pre-variant change hook (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'; // Visual cue for loading productContainer.style.transition = 'opacity 0.2s ease-in-out'; } } }); // EvoX callback after variant AJAX update window.evoXProductChangeCallback = function () { console.log("EvoX AJAX response received – polling for updated DOM"); const start = Date.now(); const timeoutLimit = 3000; // Fail-safe after 3s 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("Updated DOM ready"); // Product Image const imageSrc = imageEl.src; console.log("New Image:", imageSrc); // Product Price const price = priceEl.textContent.trim(); console.log("New Price:", price); // Product Description const description = descEl.textContent.trim(); console.log("New Description:", description); // Optional: update mirrored DOM elements here // document.getElementById('myCustomPriceBox').innerText = price; // Restore full UI const productContainer = document.querySelector('.productView, .product'); if (productContainer) { productContainer.style.opacity = '1'; } clearInterval(interval); // Stop polling } if (Date.now() - start > timeoutLimit) { console.warn("Timeout: AJAX content did not load in time"); clearInterval(interval); } }, 50); // Fast polling every 50ms }; })();