bes об этом я вам и говорю.
Надо как то совместить:
Как только не пробовал совместить код у меня ничего не вышло.
Это для хрома
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>auto iframe height adjust</title>
<style>
</style>
<script type="text/javascript">
<!--//
function sizeFrame(frameId) {
var F = document.getElementById(frameId);
if(F.contentDocument) {
F.height = F.contentDocument.documentElement.scrollHeight+0; //FF 3.0.11, Opera 9.63, and Chrome
} else {
F.height = F.contentWindow.document.body.scrollHeight+0; //IE6, IE7 and Chrome
}
}
//-->
</script>
</head>
<body>
<iframe width="100%" id="myFrame" src="http://cs.city.kg/cs" scrolling="no" frameborder="0" onload="sizeFrame('myFrame')"
onload=" this.height = this.contentWindow.document.body.scrollHeight;
"></iframe>
</body>
</html>
Это для оперы
<iframe src="http://cs.city.kg/cs" width="100%" scrolling="no" frameborder="0" marginheight="0" marginwidth="0"
onload=" this.height = this.contentWindow.document.body.scrollHeight;
"></iframe>