So im trying to make a dynamic iframe that load external content from another page (of the same directory). It works great in all browser except Chrome and my research didn't helped.Im getting these 2 errors :
Edit: So ive uploaded it to server to see if it would work you can see it here.Its partially working since its suppose to resize the container like its doing in Chrome (Try it in chrome then in Firefox and you will see what im talking about)
Unsafe JavaScript attempt to access frame with URL file:///C:/Users/charles/Documents/Contrat%20web/La%20chope/Finale/accueil.html from frame with URL file:///C:/Users/charles/Documents/Contrat%20web/La%20chope/Finale/index.html. Domains, protocols and ports must match.
Uncaught TypeError: Cannot read property 'body' of undefined
My javascript:
<script type="text/javascript">
function resizeIframe(iframe) {
var zoneContenant = document.getElementById("contenant").offsetHeight;
var zoneMenu = document.getElementById("menu").offsetHeight;
iframe.height = iframe.contentWindow.document.body.scrollHeight + "px";
iframeHeight = iframe.contentWindow.document.body.scrollHeight ;
if(iframeHeight < zoneMenu) {
document.getElementById("contenant").style.minHeight = zoneMenu +180+ "px";
}
}
</script>
My HTML :
<body>
<div id="contenant">
<img id="banniere" src="_img/banniere.png" alt="La Chope" />
<img id="logo" src="_img/logo.png" alt="Logo de la Chope" />
<div id="menu">
<a href="accueil.html" target="iframe"><img class="img_menu" src="_img/boutonAcceuil.png" alt="Accueil"></a>
<a href="media.html" target="iframe"><img class="img_menu" src="_img/boutonMedia.png" alt="Media"></a>
<a href="contact.html" target="iframe"><img class="img_menu" src="_img/boutonContact.png" alt="Contact"></a>
<a href="menu.html" target="iframe"><img class="img_menu" src="_img/boutonMenu.png" alt="Menu"></a>
<a href="http://www.facebook.com/LaChopeStjerome"><img class="img_menu" src="_img/boutonFace.png" alt="Facebook"></a>
</div><!-- Fermeture div menu -->
<div id="contenu">
<iframe name="iframe" scrolling="no" frameborder="0" src="accueil.html" id="frameContenu" onload="resizeIframe(this)"></iframe>
</div><!-- Fermeture div contenu -->
</div><!-- Fermeture div contenant -->
</body>