Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 009922402
ITEM: I18ST-08
The H&H Lure 3-1/2" Speck Tail Rig is made with a soft, durable plastic body rigged onto a hook and works to help catch and land saltwater fish. 1/8 oz. 3-1/2" long. 1/0 single hook.
Features and Benefits
Helps catch and land saltwater fish
Soft, durable plastic body is rigged onto the hook
1/0 single hook
Weighs 1/8 oz.
Specifications
Activity: Fishing
Material: Plastic
Baits and Lures Type: Swimbaits
Batteries Required: No
Product Type: Baits + Lures
Saltwater Suitable: Yes
Fishing - Species: Trout,Redfish
Weight (oz.): 0.125
Body Length (in.): 3.5
Style: Swim Jigs
Suitable Water Type: Saltwater
Product length: 3.5
Intended use: Saltwater
What's in the Box
H&H Lure 3-1/2" Speck Tail Rig
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();