Annual program DIA Europe
Description
As SwAPP member you receive a discount of 10% /event.
Application process:
step 1 Confirmation of membership: mail to: swapp[at]swapp.ch
step 2 Request: Email DIA Basel
// 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');
}
});

