X

7'x18' Big Tex Trailers Equipment 10ET-18

2024 Big Tex 7x18 Utility Trailer


The 10ET Pro Series Tandem Axle Utility Trailer from Big Tex Trailers is tough and durable with 5,200# axles. Multiple length options and a flush floor provides versatility for any haul from light to medium duty to small tractors.


SPECS

AXLE (2) 5,200# EZ Lube w/Electric Brakes


JACK 8,000# Drop Leg (Bolted On)


TIRE ST225/75 R-15 Load Range D


FLOOR 2" Treated Pine or Douglas Fir*


FRAME 5" Channel


WHEEL 15" x 6"; Black Mod 6 Bolt


FINISH Superior Quality Finish is Applied for a Highly Decorative and Protective Finish.


LIGHTS L.E.D. D.O.T. Stop, Tail, Turn & Clearance


TONGUE 5" Channel Fold Back/Wrap


COUPLER Adjustable Forged 2-5/16"


FENDERS 9" x 72" Tear Drop w/Back (Removable)


G.V.W.R. 9,990#


TOP RAIL 3/16" Fabricated Front Stop Rail


UPRIGHTS NONE


ELEC. PLUG 7-Way RV


HITCH TYPE Bumper Pull


SUSPENSION Multi-Leaf Spring w/Equalizer


CROSSMEMBERS 3" Channel


FINISH (Prep) Steel is Cleaned to Ensure a Professional Smooth Finish.


SAFETY CHAINS 1/4" Grd. 70 w/Safety Latch Hook (2 ea)


G.A.W.R. (Ea. Axle) 5,080#



3' KNEE RAMPS
7'x18' Big Tex Trailers Equipment 10ET-18
Price: $6,400 On Sale! $4,999
Black - Equipment
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 302428
VIN: 16V1C2326R3302428
Condition: New
Year: 2024
Manufacturer: Big Tex Trailers
Model: 10ET-18
Length: 18'
Width: 7'
Height:
GVWR (lbs): 9,990
Weight (lbs): 2,426
Payload (lbs): 7,564
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'; }); });