HTML
|
JavaScript
Alignment
Basics
Character Codes
Colors
CSS
DIVS
Forms
Frames
Links
Lists and Bullets
Meta Tags
Multimedia
Pictures
Spacing
Tables
Text
Basic Frame
Frame Border
Frame Error
Scroll Bar
Target Page
Scroll Bar
281
Scroll Bar
Description
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.
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
<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>
Advertisements