Youth Top of the World Wisconsin Badgers Maverick Snapback Adjustable Hat
$19.99
$18.99$18.99 with Academy Credit Card
Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 145052098
ITEM: MVRK-WI-ADY-2TN
Your kiddo will dominate game day with their impressive Wisconsin Badgers fandom when you get them this compelling Maverick Snapback adjustable hat from Top of the World
Features and Benefits
Contrast color underbill
Imported
High Crown
Structured fit
Embroidered graphics
Material: 100% Cotton
Flat bill
Six panel construction with embroidered eyelets
Brand: Top of the World
Snapback
One size fits most
Officially licensed
Specifications
Product Type: Hats
Age Group: Kid's
Gender: Boy's
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();