Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 148500669
ITEM: HN6888
Ready yourself for some thrilling Nebraska Huskers hoops action with this Swingman basketball jersey from adidas The graphics and colors easily highlight your enthusiasm for the next Nebraska Huskers victory This jersey is just the thing to break out when you want your team spirit to really stand out
Features and Benefits
Swingman
Officially licensed
Primegreen is a series of high-performance materials containing a minimum of 50% recycled content
Material: 100% Recycled Polyester
Mesh side panels
Imported
Machine wash, tumble dry low
Crew neck
Sleeveless
Brand: adidas
Sewn-on woven jock tag at hem
Screen print graphics
Specifications
Clothing Type: Jerseys
Product Type: Jerseys
Age Group: Adults'
Style: Swingman
Activity: Basketball
Gender: Men's
Care: Machine wash, tumble dry low
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();