W3Schools.com

Frame/IFrame scrolling Property

Frame/IFrame Object Reference Frame/IFrame Object

Definition and Usage

The scrolling property sets or returns the value of the scrolling attribute in a frame/iframe element.

The scrolling attribute specifies whether or not to display scrollbars in a frame/iframe.

frameObject.scrolling=value

or

iframeObject.scrolling=value

The scrolling property can have one of the following values:

Value Description
auto Scrollbars appear if needed (this is default)
yes Scrollbars are always shown (even if they are not needed)
no Scrollbars are never shown (even if they are needed)


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The scrolling property is supported in all major browsers.


Example

Example

Return and set the value of the scrolling attribute:

<html>
<head>
<script type="text/javascript">
function removeScroll()
{
document.getElementById("myframe").scrolling="no";
}
</script>
</head>
<body>

<iframe id="myframe" src="/default.asp">
<p>Your browser does not support iframes.</p>
</iframe>

<p>The value of the scrolling attribute is:
<script type="text/javascript">
document.write(document.getElementById("myframe").scrolling);
</script>
<p>

<input type="button" onclick="removeScroll()" value="Remove Scrollbars" />

</body>
</html>

Try it yourself »


Frame/IFrame Object Reference Frame/IFrame Object
WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Best Hosting Coupons
UK Reseller Hosting
Cloud Hosting
Top Web Hosting
$7.95/mo SEO Hosting
Premium Website Design
WEB BUILDING
XML Editor - Free Trial!
FREE Website BUILDER
Free Website Templates Free CSS Templates
Make Your Own Website
W3SCHOOLS EXAMS
Get Certified in:
HTML, CSS, JavaScript, XML, PHP, and ASP
W3SCHOOLS BOOKS
New Books:
HTML, CSS
JavaScript, and Ajax
STATISTICS
Browser Statistics
Browser OS
Browser Display
SHARE THIS PAGE