X

Car Racing Trailers in Watertown

Filters
To
To
To
To
To
7'x20' Timpte Car Racing 1020 7x20 with Ramps
7'x20' Timpte Car Racing 1020 7x20 with Ramps
$12,060 $10,899
Location: Watertown
Stock #: 02666
8.5'x28' RC Trailers Car Racing
8.5'x28' RC Trailers Car Racing
$36,670 $31,999
Location: Watertown
Stock #: 678965
7'x20' Timpte Car Racing 720
7'x20' Timpte Car Racing 720
$15,650 $14,000
Location: Watertown
Stock #: 003142
7'x18' Big Tex Trailers Car Racing 60EC-18
7'x18' Big Tex Trailers Car Racing 60EC-18
$4,999 $3,999
Location: Watertown
Stock #: 422117
7'x20' Big Tex Trailers Car Racing 70CH-20
7'x20' Big Tex Trailers Car Racing 70CH-20
$5,000 $4,899
Location: Watertown
Stock #: 417737
7'x20' Big Tex Trailers Equipment/Tilt 14TL-20
7'x20' Big Tex Trailers Equipment/Tilt 14TL-20
$9,650 $9,399
Location: Watertown
Stock #: 446667
7'x22' Big Tex Trailers Equipment/Tilt 14TL-22
7'x22' Big Tex Trailers Equipment/Tilt 14TL-22
$9,810 $9,699
Location: Watertown
Stock #: 445536
// Function to set a cookie on the Message Box function setCookie(name, value, days) { const date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); document.cookie = `${name}=${value}; expires=${date.toUTCString()}; path=/`; } // Function to get a cookie function getCookie(name) { const cookies = document.cookie.split('; '); for (let cookie of cookies) { const [key, value] = cookie.split('='); if (key === name) return value; } return null; } // Check if the cookie exists and hide the message box if it does document.addEventListener('DOMContentLoaded', () => { const messageBox = document.querySelector('.message-box'); const closeButton = document.querySelector('.mb-close'); if (getCookie('hideMessageBox')) { messageBox.style.display = 'none'; } // Set a cookie when the close button is clicked and hide the message box closeButton.addEventListener('click', () => { setCookie('hideMessageBox', 'true', 7); // Cookie expires in 7 days messageBox.style.display = 'none'; }); });