Bonjour
Est ce quelqu'un pourrait me donner un petit coup de main, merci par avance
j'aimerai ouvrir le contenu d'un iframe dans une nouvelle page et je suis coincé
<html><head><title></title>
<SCRIPT LANGUAGE="JavaScript">
function Frame_resizor1()
{window.parent.document.body.cols="100%,*";}</SCRIPT>
<SCRIPT LANGUAGE="JavaScript">
function Frame_resizor2()
{window.parent.document.body.cols="40%,60%";}</SCRIPT>
<script type="text/javascript">
<!--
function plus_grand() {
document.getElementById("receptacle").width = "100%";
document.getElementById("receptacle").height = "100%";
}//--></script>
<script type="text/javascript">
<!--
function plus_petit() {
document.getElementById("receptacle").width = "100%";
document.getElementById("receptacle").height = "100%";
}//--></script>
</head>
<body bgcolor=yellow>
<a href="javascript:window.opener.getElementById('receptacle');" Target=_blank>nouvelle fenêtre</a>
<button onClick="javascript:Frame_resizor2();plus_petit()" style="background-color:#FFFFCC;
color:red;" onmouseover="this.style.backgroundColor='#00FF00';"
onmouseout="this.style.backgroundColor='#FFFFCC';">+ petit</button><button
onClick="javascript:Frame_resizor1();plus_grand()" style="background-color:#FFFFCC; color:red;"
onmouseover="this.style.backgroundColor='#00FF00';"
onmouseout="this.style.backgroundColor='#FFFFCC';">+ grand</button><br>
<iframe id="receptacle" name=receptacle src="VISU.html" width="100%" height="97%"></iframe>

