(6)  499
(21)  825
(16)  3,075
(12)  1,749
(12)  1,995
(6)  499
(12)  1,210
(10)  4,750
window.addEventListener("load", function() { // Check if 'brandSearch' element exists in the page const input = document.getElementById("brandSearch"); if (input) { // Only run the script if the element exists on the page input.addEventListener("keyup", function() { const filter = input.value.toLowerCase(); const items = document.querySelectorAll("ul.pwb-row li"); items.forEach(function(item) { const text = item.textContent.toLowerCase(); item.style.display = text.includes(filter) ? "block" : "none"; }); }); } });