Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 159667122
ITEM: 202412584
Channel your inner Wisconsin Badgers with the classic style of this Mitchell Ness Elite Script Pullover Sweatshirt Made with a blend of cotton and polyester this pullover sweatshirt offers a comfortable and classic feel perfect for mild weather The screen printed Wisconsin Badgers graphics across the chest makes a bold statement about your fandom
Features and Benefits
Imported
Machine wash, tumble dry low
Long sleeve
Midweight sweatshirt suitable for mild temperatures
Pullover
Material: 65% Cotton/35% Polyester
Officially licensed
Brand: Mitchell & Ness
Screen print graphics
Crew neck
Specifications
Origin: Imported
Clothing Type: Pullovers
Neckline: Crew Neck
Sleeve length: Long Sleeve
Activity: College Sports
Material: 65% Cotton/35% Polyester
Gender: Men's
Zipper: No Zipper
Size Range: Men's
Moisture Wicking: No
Care: Machine wash, tumble dry low
Product Type: Sweatshirts
Age Group: Adults'
Style: Pullover Sweatshirts
Hood: No
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();