Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 135176687
ITEM: MSC-5276
Swing for the sky with the Sportspower Hanging 32 in Saucer Swing. A spacious saucer with reinforced mesh lets 2 kids swing in comfort and is easy to hang with a single carabiner. The frame is made with heavy-duty steel and powder-coated to resist weather and corrosion, while the ropes and netting resist UV radiation for added durability.
Features and Benefits
Spacious saucer swing features reinforced netting to fit up to 2 kids
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
Product Type: Swing Sets & Swings
Maximum number of children: 2
Activity: Kids Play,Outdoor Games
What's in the Box
Sportspower Hanging 32 in 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();