-
Home
-
Bonus Buys
-
Eaz-Lift ReCurve R3 Weight Distribution Hitch, 600 lb. Kit 48751
Description
The Eaz-Lift ReCurve R3 is a weight distribution hitch with an 800 lb maximum tongue weight rating that features adjustable sway control. By simply adjusting the clamp, you can decide how much sway control is exerted on the trailer. The ReCurve R3 will distribute the weight of your trailer across the axles of the tow vehicle and provide as much sway control as you choose. Or, turn the sway control completely off in dangerous or icy road conditions. Its top-loading spring bars give it more ground clearance than other hitches, and the streamlined design makes the hitch and the trailer move as one, while creating a sleek look. Includes a 2 5/16-inch hitch ball with a 15,000 lb maximum rating.
Extra Information
document.addEventListener('DOMContentLoaded', function() {
// Select the element containing the price
const priceElement = document.querySelector('.price--withoutTax');
// Check if the price element exists and log it for debugging
if (priceElement) {
console.log('Price Element:', priceElement.textContent.trim()); // Log the entire text content of the price element
// Strip the non-numeric characters (e.g., "$", "Your Price: ", etc.)
const priceText = priceElement.textContent.trim().replace(/[^\d.-]/g, '');
const numericPrice = parseFloat(priceText); // Convert the price to a float
console.log('Formatted Numeric Price:', numericPrice); // Log the extracted numeric price
if (numericPrice && !isNaN(numericPrice)) {
console.log('Sending GA4 event with price:', numericPrice); // Log before sending GA4 event
// Proceed with sending the event to GA4 if the price is valid
gtag('event', 'view_item', {
"currency": "USD", // Ensure this is correct for your currency
"value": numericPrice, // Pass the price as a float
"items": [{
"id": "4017", // Use the actual product ID here
"name": "Camco Rhino Ultimate 20' RV Sewer Hose Kit", // Replace with the actual product name
"category": "RVing & Camping, RV Sanitation", // Replace with the actual category
"brand": "Rhino", // Replace with the actual brand
"variant": "single-product-option", // Replace with the actual variant
"price": numericPrice // Include price in the event data
}]
});
} else {
console.error('Invalid price:', numericPrice); // Log if the price is invalid
}
} else {
console.error('Price element not found.'); // Log if the price element is not found
}
});