Your price after 5% discount when using your Academy Credit Card. Apply Now
25% Off Cooking Accessories When You Buy a Grill or Griddle. Up to 3 Accessories.
Quantity
STYLE IT WITH
about this product
SKU: 133659116
ITEM: 32209
Keep your outdoor cooking equipment safe with the Pit Boss Competition Series 1250CS Weather Resistant Grill Cover. This grill cover is made from heavy-duty polyester and PVC for durability and protection from the elements. The locking drawstring provides a secure fit.
Features and Benefits
Made from heavy-duty polyester backed with PVC material for long-lasting durability
Protects your equipment from harsh UV rays, rain and scratches
Custom fit full coverage design for protection
Locking drawstring provides a secure fit
Specifications
Batteries Required: No
Number of Batteries: 0
Product Type: Grilling Accessories
Batteries Included: No
Style: Grill Covers
Activity: Cooking
What's in the Box
Pit Boss Competition Series 1250CS Weather Resistant Grill Cover
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();