X

7'x24' Maxx D Equipment

7'x24' Maxx D Equipment


2 5/16" ADJUSTABLE COUPLER
10K DROP LEG JACK
I-BEAM TONGUE WITH TOOLBOX
8" X 10LB I-BEAM FRAME
3" I-BEAM ON 16" CENTERS
4' DOVETAIL W/MINI MAXXD RAMPS
2-8K ELECTRIC BRAKE AXLES
SLIPPER SPRING SUSPENSION
ST215/75R17.5 H TIRES FOR 2-8K
HD TA FENDER
2X8 TREATED WOOD FLOOR
FLUSHMOUNT LED'S / STANDARD SEALED WIRING HARNESS
MAXXD GRAY METALLIC & PRIMER
SPARE TIRE
SPARE MOUNT
STAKE POCKETS, RUBRAILS AND PIPE SPOOLS

7'x24' Maxx D Equipment
Price: $12,850 On Sale! $11,499
Gray - Equipment/Car Racing
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 132905
VIN: 5R8BC2426TM132905
Condition: New
Year: 2026
Manufacturer: Maxx D
Model:
Length: 24'
Width: 7'
Height:
GVWR (lbs): 17,500
Weight (lbs): 4,450
Payload (lbs): 13,050
Features: Dovetail, Spare Mount, Spare Tire, Tongue Box

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