Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 010004075
ITEM: K7038G
The Cotton Cordell 3/8 oz. Jigging Spoon 2-Pack are designed to mimic incapacitated freshwater fish. These jigging spoons perform consistently, even in heavy winds and currents. Each lure features rugged hardware and 1 rust-resistant #8 treble hook. Measures 2" long. Weighs 0.38 oz.
Features and Benefits
Imitates incapacitated bait to lure freshwater fish
Performs consistently, even in heavy winds and currents
Rugged hardware and 1 rust-resistant #8 treble hook
Weighs 3/8 oz.
2" long
Specifications
Baits and Lures Type: Spoons
Product Type: Baits + Lures
Activity: Fishing
Suitable Water Type: Freshwater
What's in the Box
Cotton Cordell 3/8 oz. Jigging Spoon 2-Pack
Important Product and Safety Information
!Blank
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();