Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 160470343
ITEM: 201214965
Stay warm and show your Wisconsin Badgers spirit with this Fanatics Full-Zip Anorak Hoodie Jacket This lightweight jacket is perfect for mild temperatures featuring an adjustable hood and mock collar for added protection from the elements With its convenient front pockets raglan sleeves and adjustable drawcord hem it offers both practicality and a stylish fit that's perfect for cheering on the Wisconsin Badgers
Features and Benefits
Machine wash tumble dry low
Imported
Two front pockets for warming hands or holding small items
Long sleeve
Zipper garage protects the neck
Adjustable hood for extra protection from the cold
Lightweight jacket suitable for mild temperatures
Adjustable drawcord with toggles in hem
Raglan sleeves for greater freedom of movement in the shoulders and arms
Embroidered graphics
Mock collar protects your neck from wind
Full Zip
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();