<html>
<body>
<iframe id="myframe" src="demo_iframe.html">
<p>Your browser does not support iframes.</p>
</iframe>
<p>Click the button to change the background color of the document in the iframe.</p>
<p id="demo"></p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
var x = document.getElementById("myframe");
x.style.backgroundColor = "red";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/js/tryit.asp?filename=tryjs_iframe_contentdocument by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:07:10 GMT -->
</html>