Scroll Bar
Scroll Bar
DescriptionTo specify the setting for the scroll bar, insert the line SCROLLING="X" into the <FRAME SRC="URL"> tag so the final result looks like this.

<FRAME SRC="URL" SCROLLING="X">

X is replaced with one of three options.

YES - Turns the scroll bar on.
NO - Turns the scroll bar off.
AUTO - Web page detect if needed.
Code
<html><head>

<FRAMESET ROWS="50%,50%">
<FRAME SRC="http://www.activejump.com" NAME="page1" SCROLLING="yes">
<FRAME SRC="http://www.activejump.com" NAME="page2" SCROLLING="no">
</FRAMESET>

</head></html>
Output
n/a
Practice
Advertisements