X

8.5'x22' Big Tex Trailers Deckover/Equipment 14OE-22

2025 Big Tex 8.5x22 Deckover Equipment Trailer 

#### Standard Trailer Features and Upgrades

* 2-7000# Premium, Quick-Lubricating Axles
* Forward Self-Adjusting Electric Breaks
* Multi Leaf Slipper Spring w/ Equalizer
* Adjustable 2-5/16" Coupler
* 1/4" Grd. 70 w/Safety Latch Hook
* 7000# Top Wind Drop Leg Jack
* 6" Channel
* 3"x2" Channel
* Treated Pine Flooring
* 8' Slide In Ramps
* Stake Pockets Along Both Sides 24" O/C
* 7-Way RV Plug
* Sealed Cold-Weather Wiring Harness
* ST235/80R16 Load Range E Tires
* Black Paint Color
8.5'x22' Big Tex Trailers Deckover/Equipment 14OE-22
Price: $7,830 On Sale! $7,499
Black - Deckover/Equipment
Location
Watertown
N2047 Sawmill Rd
Watertown, WI 53098
(920) 390-2258
Get a Quote
Specs
Stock Number: 390465
VIN: 16V1F2824S3390465
Condition: New
Year: 2025
Manufacturer: Big Tex Trailers
Model: 14OE-22
Length: 22'
Width: 8.5'
Height:
GVWR (lbs): 14,000
Weight (lbs): 3,600
Payload (lbs): 10,400
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'; }); });