Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 163635377
ITEM: 202889823
Cozy up and cheer on the Kansas Jayhawks with this Champion Arch Over Logo Pullover Hoodie This midweight Kansas Jayhawks hoodie features a fleece lining for added warmth and comfort making it ideal for moderate temperatures An adjustable drawstring hood helps block out the elements while a front pouch pocket provides convenient storage
Features and Benefits
Screen print graphics
Hooded
Midweight hoodie suited for moderate temperatures
Rib-knit cuffs and hem for a durable stretch
Brand: Champion
Machine wash, tumble dry low
Officially licensed
Adjustable drawstring hood to block out the elements
Material: 50% Cotton/50% Polyester
Fleece lining adds comfort and warmth
Front pouch pocket for accessible storage
Arched team wordmark over logo at chest
Specifications
Sleeve length: Long Sleeve
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();