X

Used Trailers For Sale

Filters
To
To
To
To
To
Used Equipment Trailer Does NOT Come With TITLE
Used Equipment Trailer Does NOT Come With TITLE
$2,500 $1,899
Location: Edgerton
Stock #: XXXXXX
x Used Deckover/Gooseneck
x Used Deckover/Gooseneck
$12,000 $5,000
Location: Edgerton
Stock #: 01851
8.5'x20' Towmaster Trailers Deckover/Equipment T-40
8.5'x20' Towmaster Trailers Deckover/Equipment T-40
$15,000 $4,999
Location: Edgerton
Stock #: 60808
7'x16' Griffin Dump 2'
7'x16' Griffin Dump 2'
$9,500 $8,699
Location: Edgerton
Stock #: 011138
7'x14' Used Equipment
7'x14' Used Equipment
$4,650 $3,199
Location: Edgerton
Stock #: 005820
7'x14' Used Equipment
7'x14' Used Equipment
$4,650 $3,499
Location: Edgerton
Stock #: 005844
7'x14' Used Equipment
7'x14' Used Equipment
$4,650 $3,199
Location: Edgerton
Stock #: 005827
7'x16' Anderson Equipment/Tilt
7'x16' Anderson Equipment/Tilt
$3,999 $2,499
Location: Edgerton
Stock #: 085848
6'x8' Polar King Mobile Refrigerated/Freezer PKM68
6'x8' Polar King Mobile Refrigerated/Freezer PKM68
$30,000 $26,000
Location: Edgerton
Stock #: 190967
7'x13' Big Tex Trailers Equipment/Tilt 70ST-13
7'x13' Big Tex Trailers Equipment/Tilt 70ST-13
$6,899 $4,999
Location: Edgerton
Stock #: 87068
6'x16' Polar King Mobile Refrigerated/Freezer PKM616
6'x16' Polar King Mobile Refrigerated/Freezer PKM616
$43,500 $39,999
Location: Edgerton
Stock #: 90422
3XGN-35+5 Big Tex Trailers Deckover/Gooseneck
3XGN-35+5 Big Tex Trailers Deckover/Gooseneck
$39,999 $34,999
Location: Edgerton
Stock #: 336529
6'x16' Polar King Mobile Refrigerated/Freezer PKM616
6'x16' Polar King Mobile Refrigerated/Freezer PKM616
$43,500 $39,999
Location: Edgerton
Stock #: 190423
8.5'x16' RC Trailers Enclosed Cargo RDLX8516TA3 78"
8.5'x16' RC Trailers Enclosed Cargo RDLX8516TA3 78"
$10,000 $8,790
Location: Edgerton
Stock #: 676453
6'x10' Griffin Dump GT-610
6'x10' Griffin Dump GT-610
$6,200 $5,999
Location: Edgerton
Stock #: 042727
// 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'; }); });