X

Snow Blower in Wisconsin

Filters
To
To
To
To
To
Walco Snow Blower R68
Walco Snow Blower R68
$2,700
Location: Edgerton
Stock #: 325962
Walco Snow Blower R68
Walco Snow Blower R68
$2,700
Location: Edgerton
Stock #: 325961
Walco Snow Blower R60 60"
Walco Snow Blower R60 60"
$5,299
Location: Edgerton
Stock #: 326570
Walco Snow Blower R74 74"
Walco Snow Blower R74 74"
$5,699
Location: Edgerton
Stock #: 326571
Walco Snow Blower R74 74"
Walco Snow Blower R74 74"
$5,699
Location: Edgerton
Stock #: 326573
Walco Snow Blower R60 60"
Walco Snow Blower R60 60"
$5,299
Location: Edgerton
Stock #: 325954
TYM Tractors Snow Blower SSNB-54-M 54"
TYM Tractors Snow Blower SSNB-54-M 54"
$3,441
Location: Edgerton
Stock #: 100001
TYM Tractors Snow Blower SSNB-54-M 54"
TYM Tractors Snow Blower SSNB-54-M 54"
$3,441
Location: Edgerton
Stock #: 100007
TYM Tractors Snow Blower SSNB-60-M 68"
TYM Tractors Snow Blower SSNB-60-M 68"
$4,314
Location: Edgerton
Stock #: 100163
// 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'; }); });