JS method to remove the iframe scrollbar

  • 2020-05-26 07:36:56
  • OfStack

This example shows how JS removes the iframe scrollbar. Share with you for your reference. The details are as follows:

The following code can remove iframe's scrollbars by modifying scrolling


<!DOCTYPE html>
<html>
<head>
<script>
function removeScroll()
{
document.getElementById("myframe").scrolling="no";
}
</script>
</head>
<body>
<iframe id="myframe" src="/default.asp" scrolling="auto">
<p>Your browser does not support iframes.</p>
</iframe>
<p>The value of the scrolling attribute is:
<script>
document.write(document.getElementById("myframe").scrolling);
</script>
<p>
<input type="button" onclick="removeScroll()" 
value="Remove Scrollbars">
<p>Internet Explorer, Google Chrome, Opera, 
and Safari have problems with setting 
the scrolling attribute.</p>
</body>
</html>

I hope this article has been helpful to your javascript programming.


Related articles: