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 99103 Bulb Ornament, 100 mm H, PVC, Assorted

Item Code: 9501040
Manufacturer HOMETOWN HOLIDAYS
Minimum quantity 8

Hometown Holidays 99103 Bulb Ornament, 100 mm H, PVC, Assorted

9501040

Description

You can add cheer and shine to your holiday decor with these ball ornaments by Hometown Holidays. These beautiful ball ornaments are a great way to decorate your Christmas tree, Christmas garland or front door wreath. Hang them wherever you wish to make your place shimmer and shine.

Specifications

UNSPSC Code

76.767.767

Weight

8.04lb

Height

19in

Width

17in

Length

17in

Brand

Hometown Holidays

Category

CHRISTMAS DECORATING

Color

Assorted

Diameter

50 mm

Includes

4 PC Balls

Length

50

Material

PVC

Suitable For

Indoor Outdoor

Type

Shatterproof

Width

50

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

Hometown Holidays 99103 Bulb Ornament, 100 mm H, PVC, Assorted

Item Code: 9501040
Manufacturer HOMETOWN HOLIDAYS
Minimum quantity 8

Hometown Holidays 99103 Bulb Ornament, 100 mm H, PVC, Assorted

9501040

Description

You can add cheer and shine to your holiday decor with these ball ornaments by Hometown Holidays. These beautiful ball ornaments are a great way to decorate your Christmas tree, Christmas garland or front door wreath. Hang them wherever you wish to make your place shimmer and shine.

Specifications

UNSPSC Code

76.767.767

Weight

8.04lb

Height

19in

Width

17in

Length

17in

Brand

Hometown Holidays

Category

CHRISTMAS DECORATING

Color

Assorted

Diameter

50 mm

Includes

4 PC Balls

Length

50

Material

PVC

Suitable For

Indoor Outdoor

Type

Shatterproof

Width

50

Call for price
Starting from
$19.05 / PK4
/
- +
Your pick-up branch is 86 South Main Street, Pine Island
Compare
SEARCH ×

/** * EvoX AJAX Variant Switch Handler * Updates product image, price, and description dynamically */ function evoXProductChangeCallback() { console.log("Variant switched via AJAX… syncing DOM elements"); // Wait briefly to ensure AJAX content is rendered setTimeout(() => { // Step 1: Update Product Image const imageEl = document.querySelector('.product-image img, .product-main-image img'); const imageSrc = imageEl ? imageEl.src : null; if (imageSrc) { console.log("New Image URL:", imageSrc); // Example: optionally update another image element elsewhere // document.querySelector('#custom-image-preview').src = imageSrc; } // Step 2: Update Product Price const priceEl = document.querySelector('.product-price .price, .pricing .price, .productView-price .price'); const price = priceEl ? priceEl.textContent.trim() : null; if (price) { console.log("Updated Price:", price); // Example: mirror price elsewhere if needed // document.getElementById('price-mirror').innerText = price; } // Step 3: Update Product Description const descEl = document.querySelector('.product-description, .productView-description, .description'); const description = descEl ? descEl.textContent.trim() : null; if (description) { console.log("New Description:", description); // Example: update alternate display box // document.getElementById('custom-desc-box').innerText = description; } // You can extend this logic to update thumbnails, stock status, etc. }, 150); // Wait 150ms to allow AJAX DOM to finish updating }