Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 135176847
ITEM: MSC-5330
Encourage outdoor play with the Sportspower Albany Metal Swing Set. 2 sling-style swing seats, a slide, and a 2-person glider swing offer a range of entertainment options for up to 5 kids. The heavy-duty steel frame is powder-coated to resist weather and corrosion, while molded plastic chain covers protect little fingers against pinching.
Features and Benefits
2 sling-style seats and a slide offer hours of outdoor play
Flying glider fits 2 kids for high-flying fun
Adjustable chains fit all ages to keep kids entertained as they grow
Powder-coated metal frame resists corrosion for rugged durability
Molded plastic chain covers protect fingers against pinching
Designed for easy assembly
Accommodates up to 500 pounds or 5 kids
Specifications
Inflatable: No
Maximum weight capacity (lb.): 500
Product Type: Swing Sets & Swings
Maximum number of children: 5
Activity: Kids Play,Outdoor Games
What's in the Box
2 sling-style swings
Glider swing
5 ft slide
Frame
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();