amigos:
lo casi solucione con esta funcion
Código Javascript
:
Ver original<script type="text/javascript">
function sizeFrame(frameId) {
var F = document.getElementById(frameId);
if(F.contentDocument) {
F.height = F.contentDocument.documentElement.scrollHeight+0;
} else {
F.height = F.contentWindow.document.body.scrollHeight+0;
}
}
</script>
ahora el poblema es cuando voy a otra pagina desde ese mismo iframe, ahi me pone el heigth segun el anterior
por ejemplo:
entro a comentarios.php (ahi el heigth es segun los comentarios que hay)
desde comentarios voy a respuestas ---> AHI ESTA EL POBLEMA PORQUE EL HEIGTH ME TOMA EL DE COMENTARIOS Y NO DE LA PAGINA ACTUAL
graciasss