Edger Discs 5" Monster Ceramic Hook & Loop Edger Discs

enter image description here

Monster Professional Quality Ceramic Abrasives are engineered specifically for sanding hardwood floors!



Extra sharp ceramic grain is specially selected for floor sanding working pressures. Engineered to micro-fracture, constantly exposing new sharp cutting surfaces. Ceramic abrasive technology is proven to sand wood floors faster, with a more consistent finish.

Semi-closed coating of the abrasive grain helps resist loading of the abrasive by old coatings during refinish work, improving the overall life of the product. Our specially formulated phenolic resin bonding system ensures that the grit stays fixed to the backing.

Extra heavy duty flexible backing helps dissipate heat, improving the overall life of the belts, drum covers and discs.

Filter
Option Size Grit Abrasive Material Activity / Use Equipment Compatibility Replacement / Compatible Part Features Surface Type Unit Purchase
5" Monster Hook & Loop Discs 36 Grit 50
5" Monster No Hole Hook & Loop Discs 36 Grit
165-50036
5" Round 36 Ceramic Paper Sanding 5" Edger Norton® RedHeat® 66254440809 Hook & Loop Hardwood, Wood
$3.35/EA
Register to see Discount In Stock
5" Monster Hook & Loop Discs 40 50
5" Monster No Hole Hook & Loop 40 Grit
165-50040
5" Round 40 Ceramic Paper Sanding 5" Edger Norton® RedHeat® 66254408866 Hook & Loop Hardwood, Wood
$3.05/EA
Register to see Discount In Stock
5" Monster Hook & Loop Discs 50 50
5" Monster No Hole Hook & Loop 50 Grit
165-50050
5" Round 50 Ceramic Paper Sanding 5" Edger Norton® RedHeat® 66254440810 Hook & Loop Hardwood, Wood
$2.88/EA
Register to see Discount In Stock
5" Monster Hook & Loop Discs 60 Grit 50
5" Monster No Hole Hook & Loop 60 Grit
165-50060
5" Round 60 Ceramic Paper Sanding 5" Edger Norton® RedHeat® 66254440811 Hook & Loop Hardwood, Wood
$2.68/EA
Register to see Discount In Stock
5" Monster Hook & Loop Discs 80 50
5" Monster No Hole Hook & Loop 80 Grit
165-50080
5" Round 80 Ceramic Paper Sanding 5" Edger Norton® RedHeat® 66261069003 Hook & Loop Hardwood, Wood
$2.48/EA
Register to see Discount In Stock
5" Monster Hook & Loop Discs 100 50
5" Monster No Hole Hook & Loop 100 Grit
165-50100
5" Round 100 Ceramic Paper Sanding 5" Edger Norton® RedHeat® 66261069004 Hook & Loop Hardwood, Wood
$2.30/EA
Register to see Discount In Stock
5" Monster Hook & Loop Discs 120 50
5" Monster No Hole Hook & Loop 120 Grit
165-50120
5" Round 120 Ceramic Paper Sanding 5" Edger Norton® RedHeat® 66254440813 Hook & Loop Hardwood, Wood
$2.30/EA
Register to see Discount In Stock

/** * Product Page Enhancement Script * * This script: * 1. Moves content from a specified heading to underneath the gallery (vanilla JS) * 2. Manages product browsing history (jQuery) */ // ===== PART 1: Content Mover (Vanilla JS) ===== (() => { // Function to move content from a heading to below the gallery const moveContentBelowGallery = (headingSelector, gallerySelector) => { // Find the target heading const heading = document.querySelector(headingSelector); if (!heading) return; // Exit if heading not found // Find the gallery element const gallery = document.querySelector(gallerySelector); if (!gallery) return; // Exit if gallery not found // Create a container for the content to be moved const movedContentContainer = document.createElement('div'); movedContentContainer.className = 'moved-content-container'; // Collect the heading and all its following siblings const contentToMove = [heading]; let currentElement = heading.nextElementSibling; while (currentElement) { contentToMove.push(currentElement); currentElement = currentElement.nextElementSibling; } // Add all content to the new container contentToMove.forEach(element => { // Clone the element to avoid reference issues const clonedElement = element.cloneNode(true); movedContentContainer.appendChild(clonedElement); // Remove the original element element.parentNode.removeChild(element); }); // Insert the new container after the gallery gallery.insertAdjacentElement('afterend', movedContentContainer); return movedContentContainer; }; // Add a custom contains selector for case-insensitive text matching if (!Element.prototype.matches) { Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector; } // Override the querySelector method to support :contains() const originalQuerySelector = Document.prototype.querySelector; Document.prototype.querySelector = function(selector) { if (selector.includes(':contains(')) { // Extract the text content from the selector const match = selector.match(/:contains\("([^"]+)"\)/); if (match) { const textToFind = match[1]; const baseSelector = selector.replace(/:contains\("([^"]+)"\)/, ''); // Find all elements that match the base selector const elements = document.querySelectorAll(baseSelector); // Return the first one that contains the text for (const element of elements) { if (element.textContent.includes(textToFind)) { return element; } } return null; } } // Fall back to the original method for standard selectors return originalQuerySelector.call(this, selector); }; // Make the function globally available if needed window.moveContentBelowGallery = moveContentBelowGallery; // Execute the function when DOM is fully loaded document.addEventListener('DOMContentLoaded', () => { // Call with specific selectors for this page moveContentBelowGallery('h2:contains("See the BOSS 4-in-1 Ultra Floor System in Action:")', '.gallery'); }); })(); // ===== PART 2: Product History Management (jQuery) ===== $(function() { // Check and clear redirect flag if it exists if (sessionStorage['has-redirect']) { sessionStorage.removeItem('has-redirect'); } // Product History jQuery plugin $.fn.productHistory = function(historyItem) { if (historyItem != null) add(historyItem); var history = getHistory(historyItem); if (history.length > 0) { $(this).append(`
Recently Viewed Products
`); const historyContainer = $('
'); history.forEach(item => { var template = ``; historyContainer.append(template); }); $(this).append(historyContainer); } }; // Add an item to history function add(historyItem) { var history = getHistory(historyItem); history.splice(0, 0, historyItem); history = history.slice(0, 5); setHistory(history); }; // Get product history from cookies function getHistory(historyItem) { var history = decodeURIComponent(document.cookie?.split('; ')?.find(x => x?.startsWith('productHistory'))?.substring(15)); if (history === 'null' || history === 'undefined' || !history) return []; try { history = JSON.parse(history); var filteredHistory = $.grep(history, function(h) { return h.url != historyItem.url; }); return filteredHistory; } catch (e) { console.error("Error parsing product history:", e); return []; } } // Save product history to cookies function setHistory(productHistoryCollection) { let history = encodeURIComponent(JSON.stringify(productHistoryCollection)); const d = new Date(); d.setTime(d.getTime() + (24 * 60 * 60 * 1000)); //24 hour expire let expires = "expires=" + d.toUTCString(); document.cookie = "productHistory=" + history + ";" + expires + ";path=/"; } // Setup product history tracking var historyItem = { url: window.location.href, image: $('#product-rail .gallery .primary img').attr('src'), description: $('#product-inner h1,#product-main h1').first().text().trim() }; if ($('#product-history-container').length < 1) { $('#related-product-sets').after(''); } if ($('#product-history-container').text().trim().length < 1) { $('#product-history-container').productHistory(historyItem); } }); // Move in-stock labels on window load $(window).on('load', function() { if (document.querySelector('.mono-item-product')) { $('span[class*="stock"]').appendTo('#product-items .product-item .purchase'); } });