1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script>
function actu_iframe(){
if(navigator.appName=="Microsoft Internet Explorer" ){
if(document.all) document.all.id_iframe.style.height = document.frames("id_iframe" ).document.body.scrollHeight+30;
else document.getElementById("id_iframe" ).style.height = document.getElementById("id_iframe" ).contentDocument.body.scrollHeight;
}
else{
document.getElementById("id_iframe" ).style.height = document.getElementById("id_iframe" ).contentDocument.body.offsetHeight+30;
}
}
</script>
</head>
<body>
<a href="cat.php" target="name_iframe">CAT</a>
<a href="http://localhost" target="name_iframe">A</a>
<br><br>
<iframe onLoad="actu_iframe();" src="a.php" name="name_iframe" id="id_iframe" width=1024 height=200 frameborder=no SCROLLING=auto>
</iframe>
<br> ICI LE BAS DE L'IFRAME
</BODY>
</HTML> |