SoFunction
Updated on 2025-04-02

FLEX adds scrollbar implementation ideas and code to the page


var winWidth = 0;
var winHeight = 0;
function findDimensions()
{
//Get window width
if ()
{
winWidth = ;
}
else if (() && ())
{
winWidth = ; //Get window height
}
if ()
{
winHeight = ;
}
else if (() && ())
{
winHeight = ;
}
//Click the window size by detecting the body deep inside the Document to obtain the body size
if ( && && )
{
winHeight = ;
winWidth = ;
}

var cssSize = [0].rules||[0].cssRules;
if(winWidth < 1100)
{
cssSize[0]. = "1100px";
}
else
{
cssSize[0]. = "100%";
}

if(winHeight < 600)
{
cssSize[0]. = "600px";
}
else
{
cssSize[0]. = "100%";
}
}

=findDimensions;

function pageInit() {
//Calling the function to get the value
findDimensions();

}