Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 157171473
ITEM: 202181283
Channel the electrifying spirit of Neyland Stadium with this Tennessee Volunteers Vault Megaphone Pullover Hoodie from Nike This hoodie boasts throwback team graphics printed on the chest letting you rep the Volunteers in classic style The soft fleece lining provides a cozy feel making it perfect for those cooler game days or casual outings
Features and Benefits
Long sleeve
Midweight hoodie suitable for moderate temperatures
Officially licensed
Screen print graphics
Pullover
Throwback team graphics printed on chest
Brand: Nike
Material: 82% Cotton/18% Polyester
Machine wash, tumble dry low
Front pouch pocket keeps your hands warm
Hooded
Fleece lining for a soft, cozy feel
Specifications
Clothing Type: Fleece,Hoodies,Pullovers
Neckline: Hood
Sleeve length: Long Sleeve
Activity: College Sports,Casual
Material: 82% Cotton/18% Polyester
Heat Retention: Yes
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 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();