<html><head> <title>Manipulation des iframes en JavaScript</title> <script type="text/javascript"> function manipulerFrame() { var f=document.getElementById("iframe1").contentWindow; f.document.body.style.backgroundColor="#999"; f.document.body.style.color="#fff"; } </script></head><body onload="manipulerFrame()"> <h1 id="monH1"></h1> <iframe src="iframe1.html" width="200" height="150" frameborder="0" scrolling="no" id="iframe1" /></body></html>