function activateScripts() {
    const scripts = document.querySelectorAll('script.nogConsent');
    for (const script of scripts) {
        script.src = script.dataset.src;
    }
    if (typeof(nogConsentCallback)=='function')
        nogConsentCallback();
}

activateScripts();
