Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 135176724
ITEM: SW-102
Give your kids a place to play, exercise and relax with the Sportspower Deluxe Dome Climber with Hammock. The intricate dome provides hours of climbing fun while developing kids' muscles and motor skills. A hammock lets them relax when they get tired. Heavy-duty steel with a powder-coated finish provides rugged durability for years of use.
Features and Benefits
Intricate climbing dome provides hours of fun while kids develop muscles and motor skills
Hammock lets kids relax between adventures
Heavy-duty steel frame lends rugged strength
Powder coating protects against weather damage and rust
Carabiners provide a safe anchor point for the hammock
Supports up to 300 pounds or 3 kids
Specifications
Inflatable: No
Maximum weight capacity (lb.): 300
Batteries Required: No
Product Type: Playsets
Batteries Included: No
Maximum number of children: 3
Activity: Backyard,Kids Play
What's in the Box
Sportspower Deluxe Dome Climber
Hammock and carabiner
function updateCustomerIdStorage() {
const sourceKey = 'aso_cdp_data';
const targetKey = 'm_cdp_customer_id';
let customerId = null;
try {
const storedValue = localStorage.getItem(sourceKey);
if (storedValue) {
const data = JSON.parse(storedValue);
customerId = data.cdpData?.customerId;
} else {
console.warn(`Source Key "${sourceKey}" not found in local storage.`);
}
} catch (error) {
console.error(`Error parsing JSON from source key "${sourceKey}":`, error);
}
if (customerId) {
localStorage.setItem(targetKey, customerId);
// console.log(`Successfully set "${targetKey}" to: ${customerId}`);
} else {
localStorage.removeItem(targetKey);
// console.log(`No customerId found. Removed key "${targetKey}" from local storage.`);
}
}
updateCustomerIdStorage();