Treffpunkt: Einführung ins Heilmittelgesetz
Description
Please contact treffpunkt@bratschi-newsletter.ch
// Select all elements
const emElements = document.querySelectorAll('em');
// Loop through each element
emElements.forEach((element) => {
// Check if the text content matches the desired text
if (element.textContent.trim() === 'Registrations are now closed.') {
// Assign the 'reg-closed' class to the matching element
element.classList.add('reg-closed');
}
});

