Thank you for your interest in Scale-up.NRW! The application phase for Batch #2 has been closed since January 11th. If you have further questions, please contact our program team directly: Christopher or Thomas.
Congratulation
Thank you! Your Application has been received! We contact you in the next time for more...
Du bist dir nicht sicher, ob das Programm zu dir passt? Du hast weitere Fragen? Schau gerne in unsere FAQs oder melde dich direkt bei unserem Scale-up-Team.
Markus Hafner
Senior Scaleup Manager
Anna Keup
Scaleup Manager
Christopher Smolka
Senior Scaleup Manager
// init Weglot
Weglot.initialize({
api_key: 'wg_34a46654b70709065776d7abadbb45eb3'
});
// on Weglot init
Weglot.on('initialized', ()=>{
// get the current active language
const currentLang = Weglot.getCurrentLang();
// if the current active language link exists
if(document.querySelector('.wg-element-wrapper.sw6 [lang='+currentLang+']')){
// click the link
document.querySelector('.wg-element-wrapper.sw6 [lang='+currentLang+']').click();
}
});
// for each of the .wg-element-wrapper language links
document.querySelectorAll('.wg-element-wrapper.sw6 [lang]').forEach((link)=>{
// add a click event listener
link.addEventListener('click', function(e){
// prevent default
e.preventDefault();
// switch current active language after a setTimeout
setTimeout(()=>Weglot.switchTo(this.getAttribute('lang')),160);
});
});