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
This item may ship from a different location therefore only eligible for ground shipping. Additionally, this item is not eligible for APO/FPO delivery.
STYLE IT WITH
about this product
SKU: 139982985
ITEM: 5009
Keep your fryer covered with the Bayou Classic Canvas Bayou 9-Gal Fryer Lid Cover. The elastic lid conveniently fits over 9-gallon Bayou Fryers to help protect from the elements and insects, and the lid is designed to blend with any aesthetic on your patio.
Features and Benefits
Elastic lid cover securely conceals fryer from outside debris and insects
Designed to match your outdoor furniture and decorations
9-gallon size fits the 9-gallon Bayou Fryer
Specifications
Batteries Required: No
Number of Batteries: 0
Product Type: Cooking Accessories
Batteries Included: No
Activity: Cooking
What's in the Box
Bayou Classic Canvas Bayou 9-Gal Fryer Lid 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();