X

Mower in Wisconsin

Filters
To
To
To
To
To
Walco Mower  60"
Walco Mower 60"
$1,390
Location: Edgerton
Stock #: 429390
Walco Mower  72"
Walco Mower 72"
$1,810
Location: Edgerton
Stock #: 325976
TYM Tractors Mower MM54 54"
TYM Tractors Mower MM54 54"
$2,315
Location: Edgerton
Stock #: S00509
TYM Tractors Mower TM60 60"
TYM Tractors Mower TM60 60"
$2,701
Location: Edgerton
Stock #: T00307
TYM Tractors Mower SGM4 48"
TYM Tractors Mower SGM4 48"
$3,058
Location: Edgerton
Stock #: 100481
TYM Tractors Mower SGM5 60"
TYM Tractors Mower SGM5 60"
$3,348
Location: Edgerton
Stock #: 801474
TYM Tractors Mower SGM6 72"
TYM Tractors Mower SGM6 72"
$3,724
Location: Edgerton
Stock #: 800767
TYM Tractors Mower FL-135
TYM Tractors Mower FL-135
$2,769
Location: Edgerton
Stock #: 039007
TYM Tractors Mower FL-165
TYM Tractors Mower FL-165
$3,146
Location: Edgerton
Stock #: 083086
TYM Tractors Mower FL-165
TYM Tractors Mower FL-165
$3,146
Location: Edgerton
Stock #: 083034
TYM Tractors Mower 2512 144"
TYM Tractors Mower 2512 144"
$18,100
Location: Edgerton
Stock #: 350018
TYM Tractors Mower FL-135
TYM Tractors Mower FL-135
$2,769
Location: Edgerton
Stock #: 040023
// 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'; }); });