-
Home
-
RVing & Camping
-
Camco Power Grip 30-Amp RV Extension Cord/Level 1 EV Charger, 50' Length, 125V/3750W — 10-Gauge Wires — NEMA TT-30P Standard x L5-30R Locking — ETL Listed to CSA/UL Standards 55525
Description
Experience ultimate versatility with Camco's 50' cord, designed to function as both a 30Amp RV Extension Cord and a Level 1 EV charger. This dual-purpose outdoor power cord ensures reliable power delivery for your travel trailer or electric vehicle, making it an essential tool for your outdoor adventures.
Equipped with convenient handles, this EV charger extension cable is easy to plug and unplug. Its flame-retardant PVC sheath offers durability and protection against outdoor conditions and wear. The copper conductor wiring ensures optimal conductivity, while the adjustable cord organizer with carrying strap handle makes this RV power cord/EV charging extension cable both practical and portable.
Travel confidently with Camco's 30-amp RV cord/EV charging cable, certified for use in the U.S. and Canada. Don't let distance limit your adventures— trust Power Grip’s 30-amp cord to stay powered on your journeys.
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
}
});