Alles, was wichtig ist
News von Omni1
Aktuelle Neuigkeiten
- All
- SEO
- Webdesign
<script> // Select the element with data-filter="*" var element = document.querySelector('[data-filter="*"]'); // Check if the element exists and change its text content if (element) { element.textContent = "ALLE"; } // Define an array of the data-filter values to hide var filtersToHide = [ '.allgemein', '.bewerbermanagement', '.social-media-recruiting', '.stellenportale', '.active-sourcing' ]; // Loop through the filters and hide the corresponding <li> elements filtersToHide.forEach(function(filter) { var listItem = document.querySelector('li[data-filter="' + filter + '"]'); if (listItem) { listItem.style.display = 'none'; } }); </script>