X

8.5'x26' Maxx D Equipment H8X10226

2026 MAXX-D 8.5x26 Car Racing Equipment Trailer 

2 5/16″ ADJUSTABLE COUPLER
1 – 10K DROP-LEG JACK
8″ CHANNEL WRAP TONGUE
8″ CHANNEL FRAME
3″ CHANNEL ON 12″ CENTERS
4' DOVETAIL W/MINI MAXXD RAMPS
2-8K ELECTRIC BRAKE AXLES
SLIPPER SPRING SUSPENSION
ST215/75R17.5 H RADIAL TIRES FOR 2-8K
DRIVE-OVER FENDERS
2X8 TREATED WOOD FLOOR
FLUSHMOUNT LED’S/STANDARD WIRING
4X EXTRA 5/8" BULL-NOSED D-RING WELDED ON TOP OF SIDE CHANNEL
SPARE TIRE
SPARE MOUNT
4 D-RINGS BETWEEN FENDERS

8.5'x26' Maxx D Equipment H8X10226
Price: $16,999 On Sale! $14,999
Gray - Equipment/Car Racing
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 132748
VIN: 5R8BC2629TM132748
Condition: New
Year: 2026
Manufacturer: Maxx D
Model: H8X10226
Length: 26'
Width: 8.5'
Height:
GVWR (lbs): 17,500
Weight (lbs): 5,270
Payload (lbs): 12,230
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'; }); });