Jobs

There are currently no vacancies.

Date published: 16th December, 2024
Date last updated: 16th December, 2024

const h1s = document.querySelectorAll('h1'); const element = document.querySelectorAll('.action-link'); let elementToHide = null; for (const h1 of h1s) {   // We convert the innerText to lowercase for the comparison   if (h1.innerText.toLowerCase().includes('appointments')) {     elementToHide = element[0];     break;   } } if (elementToHide) {   elementToHide.style.display = 'none'; }