Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 018264986
ITEM: 99208
Young football players will be safe on the playing field with the Sportstar Kids' Evolution Gel Chin Strap. This chin strap is constructed from medical-grade nonslip foam and features a Hydro GelPad for comfort and cushioning. A plastic shell deflects and spreads energy on hard impacts, and the strap splitter allows for adjustments on a high or low hookup. The metal snap secures the chin strap and will not bend, break or gouge opposing players' helmets.
Features and Benefits
Medical-grade nonslip foam and a Hydro GelPad provide cushioning
Plastic shell deflects and spreads energy on hard impacts
Strap splitter allows for adjustments on a high or low hookup for a comfortable fit
Metal snap will not bend, break or gouge opposing players' helmets
Specifications
Product Type: Protective Gear
Protective Gear Type: Football Helmet Accessories
Style: Chin Straps
Activity: Football
Gender: Boys',Girls'
What's in the Box
Sportstar Kids' Evolution Gel Chin Strap
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();