select
Product Code: 58FW
Price   Qty  
$17.25 BX/25 ea
 Click here for more information
 Click here for MSDS information

* Please note we cannot be held responsible for the content of other web sites
 
Description
5/8" Zinc Flat Washer (25)
Related products
$10.49 BX/50
ea
Add
$10.49 BX/50
ea
Add
$12.99 BX/20
ea
Add
$10.49 BX/25
ea
Add
$7.29 BX/25
ea
Add
// Get the current date and add 2 days const today = new Date(); today.setHours(0, 0, 0, 0); // Set to the beginning of the day const datePlusTwo = new Date(today); datePlusTwo.setDate(datePlusTwo.getDate() + 2); // Function to parse the date from the format 'Tuesday, August 20, 2024' function parseDate(dateString) { return new Date(dateString.replace(/^/w+, /, '')); // Remove the day name and parse the rest } // Select all elements containing the date const tds = document.querySelectorAll('td'); // Iterate over the elements tds.forEach(td => { const tdDateText = td.textContent.trim(); const tdDate = parseDate(tdDateText); // Compare the td date with today's date + 2 if (tdDate < datePlusTwo) { td.classList.add('rcOutOfRange'); } });