X

7'x20' Top Hat Trailers Utility Rx10-24X83-9.9E-Q

#### Standard Trailer Features and Upgrades

* Coupler: 2" Forged A-Frame
* Jack: 2000# Set Back
* Fenders: 9x72 Rolled Straight
* Floor: 2" Treated Pine
* Brake: Electric Brakes
* Break Away Unit w/Charger
* Stake Pockets
* 48" Tall Upright Tailgate
* Fender Brace/Steps
* Spare Rack
* 24" Sides w/Expanded Metal
* LED Lights
* Beaver Tail

#### Frame Structure

* Frame: 3x2x3/16
* Toprail: 3x2x3/16
* Crossmembers: 3x2x3/16
* Tongue: 4" Channel Wrap
* Uprights: 2x2x3/16
7'x20' Top Hat Trailers Utility Rx10-24X83-9.9E-Q
Price: $6,999 On Sale! $5,999
Black - Utility
Location
Watertown
N2047 Sawmill Rd
Watertown, WI 53098
(920) 390-2258
Get a Quote
Specs
Stock Number: 252367
VIN: 4R7BU2024SN252367
Condition: New
Year: 2025
Manufacturer: Top Hat Trailers
Model: Rx10-24X83-9.9E-Q
Length: 20'
Width: 7'
Height:
GVWR (lbs): 9,990
Weight (lbs): 3,100
Payload (lbs): 6,890
Features:

Other Recommendations

// 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'; }); });