Change iframe url according to page language

Hi

I have a multilingual website, where one of the pages contains an iframe.
I would like to change the iframe url according to the display language
any ideas how do I do that?
I have basic knowledge in js, html and more so if coding is needed it’s not a problem

Thanks
Nadav

You could use the HTML Component’s src property to set the url based on the the language . So something like below.

import wixWindow from 'wix-window';

$w.onReady( function() {
   let language = wixWindow.multilingual.currentLanguage;
   if(language === 'en') { //english
     $w("#html1").src = 'https://www.english.com';
   } else if(language === 'en') { //spanish
     $w("#html1").src = 'https://www.spanish.com';
   }
});

It worked! thanks a lot shan