X

Contractor Trailers in Edgerton

Filters
To
To
To
To
To
7'x16' RC Trailers Contractor RDLX 7X16TA3 84"
7'x16' RC Trailers Contractor RDLX 7X16TA3 84"
$13,400 $12,999
Location: Edgerton
Stock #: 680565
8.5'x16' RC Trailers Contractor RWT 8.5x16 90"
8.5'x16' RC Trailers Contractor RWT 8.5x16 90"
$15,200
Location: Edgerton
Stock #: 683027
7'x12' Alcom Contractor  85"
7'x12' Alcom Contractor 85"
$10,265 $9,999
Location: Edgerton
Stock #: 032959
7'x12' Alcom Contractor  85"
7'x12' Alcom Contractor 85"
$10,626 $10,499
Location: Edgerton
Stock #: 032963
8.5'x16' Alcom Enclosed Cargo XPRESS 8.5x16 79"
8.5'x16' Alcom Enclosed Cargo XPRESS 8.5x16 79"
$15,400 $14,999
Location: Edgerton
Stock #: 028815
8.5'x16' Alcom Enclosed Cargo XPRESS 8.5x16 79"
8.5'x16' Alcom Enclosed Cargo XPRESS 8.5x16 79"
$15,400 $14,999
Location: Edgerton
Stock #: 028814
8.5'x16' Alcom Enclosed Contractor 79"
8.5'x16' Alcom Enclosed Contractor 79"
$17,800
Location: Edgerton
Stock #: 028839
8.5'x16' Alcom Enclosed Enclosed Cargo 79"
8.5'x16' Alcom Enclosed Enclosed Cargo 79"
$17,800
Location: Edgerton
Stock #: 028803
// 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'; }); });