SwAPP General Assembly 2022
Description
The General Assembly will be followed by a New-member Session and a Lunch Apéro.
Afterwards, we look forward to the 14ht ExEx “Bringing out innovations: Regulatory and clinical strategies as key factors of success”
// 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');
}
});

