I would like to remove the scrollbars from the side of my iframes. I tried using the code from the wix api https://www.wix.com/corvid/reference/$w.HtmlComponent.html#scrolling
$w(“#html1”).scrolling = “no”;
and there is no change. Am I missing some code that goes along with it? or not placing it right? I have other code running on the page, my entire code looks like this (scrolling code at bottom)
import wixLocation from ‘wix-location’;
import wixWindow from ‘wix-window’;
$w.onReady( function () {
$w(“#gamesDropdown”).onChange((event) => {
let Value = $w(“#gamesDropdown”).value; // “new value”
wixLocation.to(Value);
});
$w(“#eventsDropdown”).onChange((event) => {
let Value = $w(“#eventsDropdown”).value; // “new value”
wixLocation.to(Value);
});
let formFactor = wixWindow.formFactor; // “Mobile”
if (formFactor !== “Desktop”) {
$w(‘#menuButton’).show();
}
$w(“#html1”).scrolling = “no”;
});
any help is greatly appreciated!!