Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 143650449
ITEM: GV5501
Get pumped up and ready to cheer on your Nebraska Huskers this season in this 1 Premier football jersey from adidas The crisp tackle twill graphics and bold colors will have you looking like you should be on the field for kickoff It is also made with Primegreen fabrics high-performance recycled materials that keep you feeling as good as you look while you enjoy the action
Features and Benefits
Premier Jersey
Mesh side and underarm panels
Tackle twill graphics
Imported
Officially licensed
Machine wash, tumble dry low
Heat-sealed applique
Primegreen is a series of high-performance materials containing a minimum of 50% recycled content
Material: 100% Recycled Polyester
Screen print graphics
Brand: adidas
Woven jock tag
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();