|
HTML DOM scrolling Property
Complete Frame Object Reference
Definition and Usage
The scrolling property sets or returns whether or not a frame should have
scrollbars.
Syntax
|
frameObject.scrolling=yes|no
|
Example
In our example we will first create an HTML document containing a frameset
with two columns. Each column is set to 50% of the browser window:
<html>
<frameset cols="50%,50%">
<frame id="leftFrame" src="frame_scroll.htm">
<frame id="rightFrame" src="frame_a.htm">
</frameset>
</html>
|
The HTML document "frame_scroll.htm" is put into the first column, and the
HTML document "frame_a.htm" is put into the second column.
Example
The source of "frame_scroll.htm" is as follows:
<html>
<head>
<script type="text/javascript">
function enableScrolling()
{
parent.document.getElementById("leftFrame").scrolling="yes"
parent.document.getElementById("rightFrame").scrolling="yes"
}
function disableScrolling()
{
parent.document.getElementById("leftFrame").scrolling="no"
parent.document.getElementById("rightFrame").scrolling="no"
}
</script>
</head>
<body>
<input type="button" onclick="enableScrolling()"
value="Scroll bars" />
<input type="button" onclick="disableScrolling()"
value="No scroll bars" />
</body>
</html>
|
|
Complete Frame Object Reference

Need an easy way to get data into XML, or transform XML to another format?
MapForce lets you map XML data to/from any combination of XML, database, flat file, Excel 2007, XBRL, or Web services data.
Then it transforms data instantly or auto-generates royalty-free data integration code for recurrent conversions.
Download a free, fully functional 30-day trial to experience the following features:
- Easy-to-use, graphical data mapping interface
- Instant data transformation
- XSLT 1.0/2.0 and XQuery code generation
- Java, C#, and C++ code generation
- Advanced data processing functions
- Support for all major relational databases including SQL Server, IBM DB2, Oracle, and more
- Visual Studio & Eclipse integration
Download a fully-functional trial today!
|
|
|
|