Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 135176661
ITEM: MSC-5248
Swing for the sky with the Sportspower XL Saucer Swing. Reinforced mesh and foam padded headrests let 2 kids swing in comfort, while a 4-point anchor enhances stability while allowing easy hanging with a single carabiner. The frame is made with heavy-duty steel and powder-coated to resist weather and corrosion.
Features and Benefits
Saucer swing features reinforced webbing and 2 foam-padded headrests for safe and comfortable play
4-point hanging system enhances stability
Heavy-duty steel frame delivers rugged strength
Powder coating protects against rust and corrosion
Rope and mesh resist UV damage and fading
Carabiner clip allows easy hanging
Supports 200 pounds or up to 2 kids
Specifications
Inflatable: No
Maximum weight capacity (lb.): 200
Batteries Required: No
Product Type: Swing Set
Assembly Required: Yes
Batteries Included: No
Maximum number of children: 2
Activity: Backyard,Kids Play
Recommended ages: 3-8 years
What's in the Box
Sportspower XL Saucer Swing
Frame
Hanging ropes
Carabiner
User Manual
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();