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…

Hometown Holidays 90343 Christmas Inflatable Snowman/Candy Cane, 19 ft H, Nylon, White

Item Code: 9544628
Manufacturer HOMETOWN HOLIDAYS

Hometown Holidays 90343 Christmas Inflatable Snowman/Candy Cane, 19 ft H, Nylon, White

9544628

Description

Take your holiday yard decorations to another level with this 19 ft H Christmas Inflatable Snowman with a candy cane. It can quickly be deflated for easy storage.

Specifications

UNSPSC Code

76.767.767

Weight

4.8lb

Height

15.75in

Width

13.39in

Length

22.83in

Brand

Hometown Holidays

Category

CHRISTMAS DECORATING

Color

White

Includes

Outside Air Blower 6 Stakes 3 Ropes

Length

100

Material

Nylon

Power Source

D/C

Power Supply

CUL Adapter

Type

Inflatable

Width

70

Call for price
Starting from
$354.95 / EA
/
- +
Your pick-up branch is 86 South Main Street, Pine Island
Compare

Hometown Holidays 90343 Christmas Inflatable Snowman/Candy Cane, 19 ft H, Nylon, White

Item Code: 9544628
Manufacturer HOMETOWN HOLIDAYS

Hometown Holidays 90343 Christmas Inflatable Snowman/Candy Cane, 19 ft H, Nylon, White

9544628

Description

Take your holiday yard decorations to another level with this 19 ft H Christmas Inflatable Snowman with a candy cane. It can quickly be deflated for easy storage.

Specifications

UNSPSC Code

76.767.767

Weight

4.8lb

Height

15.75in

Width

13.39in

Length

22.83in

Brand

Hometown Holidays

Category

CHRISTMAS DECORATING

Color

White

Includes

Outside Air Blower 6 Stakes 3 Ropes

Length

100

Material

Nylon

Power Source

D/C

Power Supply

CUL Adapter

Type

Inflatable

Width

70

Call for price
Starting from
$354.95 / EA
/
- +
Your pick-up branch is 86 South Main Street, Pine Island
Compare
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); }; })();