Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 147281599
ITEM: IA3379
Prove your unmatched passion for Nebraska Huskers football with this Premier jersey from adidas Its perforated construction allows for a breathable feel while the kickoff-ready graphics make this the perfect option to wear to the tailgate and beyond The next Nebraska Huskers victory will be that much more enjoyable when wearing this jersey
Features and Benefits
Tackle twill graphics
Machine wash, tumble dry low
Woven jock tag at hem
Brand: adidas
Premier Jersey
Material: 100% Recycled Polyester - Main Material; 80% Recycled Polyester/20% Thermoplastic Polyurethane - Trim
Officially licensed
Droptail hem with side splits
V-neck
Heat-sealed sleeve detail
Imported
Heat-sealed fabric appliques
Specifications
Clothing Type: Jerseys
Product Type: Jerseys
Age Group: Adults'
Activity: Football
Gender: Men's
Care: Machine wash, tumble dry low
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();