Embeds Full screen

How do I get my embeds that are already set to allow full screen. To actually go full screen in Wix.

Hey,

Please refer to the HTML Component API below and allowFullScreen( ) function specifically.

https://www.wix.com/corvid/reference/$w.HtmlComponent.html#allowFullScreen

Basically, you will need to use the following code:

$w("#myHtmlComponent").allowFullScreen();

Note: don’t forget to change the ID of the element to the relevant one.