Title: Scroll Bar
URL: http://www.activejump.com/k-3.shtml
Email: webmaster@activejump.com

Introduction

The Scroll Bar is the bar on the right side of most windows that allows you to scroll up and down on a page. When using frames, you are able to specify if the scroll bar is on, off, or have the web page automatically detect if it is needed.
Scroll Bar
To 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.

index.html - Notepad
....<HEAD>

<FRAMESET ROWS="50%,50%">

<FRAME SRC="http://www.web-site-1.com" NAME="page1" SCROLLING="YES">

<FRAME SRC="http://www.web-site-2.com" NAME="page2" SCROLLING="NO">

</FRAMESET>

</HEAD>....

Frame Example: Scrolling