Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 160470589
ITEM: 202513212
Channel your inner fan with the Mitchell Ness Wisconsin Badgers Classic Arch Pullover Hoodie Made from a blend of soft cotton and durable polyester this hoodie offers lasting comfort for those cooler game days A screen printed graphic across the chest makes it clear that you root for the Wisconsin Badgers
Features and Benefits
Machine wash tumble dry low
Fleece lining provides added warmth and a soft feel
Material: 50% Cotton/50% Polyester
Front pouch pocket for hands-free storage and extra layer of comfort
Pullover
Imported
Midweight hoodie suitable for moderate temperatures
Officially licensed
Long sleeve
Hooded
Brand: Mitchell & Ness
Screen print graphics
Specifications
Origin: Imported
Clothing Type: Fleece,Hoodies,Pullovers
Neckline: Hood
Sleeve length: Long Sleeve
Activity: Casual,College Sports
Material: 50% Cotton/50% Polyester
Heat Retention: Yes
Gender: Men's
Zipper: No Zipper
Moisture Wicking: No
Care: Machine wash tumble dry low
Product Type: Sweatshirts
Age Group: Adults'
Style: Pullover Hoodies
Features: Insulated
Hood: Yes
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();