Cream and Ointment

Kenalog in ora base

 450
document.addEventListener("DOMContentLoaded", function() { // Check if the brandSearch element exists const input = document.getElementById("brandSearch"); if (input) { // Only add the event listener if the element exists 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"; }); }); } });