Grazie del consiglio. L'ho trovato!
MINIPILLOLA:
PER CHI HA UN IFRAME NELLA SUA PAGINA WEB E VUOLE RIDIMENSIONARLO A SECONDA DELLA LUNGHEZZA DEL CONTENUTO IL CODICE JAVASCRIPT E' QUESTO:
codice:
<script type="text/javascript">
function changeHeight(iframe)
{
try
{
var innerDoc = (iframe.contentDocument) ? iframe.contentDocument : iframe.contentWindow.document;
if (innerDoc.body.offsetHeight) //ns6 syntax
{
iframe.height = innerDoc.body.offsetHeight + 32; //Extra height FireFox
}
else if (iframe.Document && iframe.Document.body.scrollHeight) //ie5+ syntax
{
iframe.height = iframe.Document.body.scrollHeight;
}
}
catch(err)
{
alert(err.message);
}
}
</script>
....e poi nel codice del collegamento ipertestuale deve aggiungere (codice in grassetto):
codice:
<iframe name="nomeframe" id="idframe" width="100%" src="percorsopagina"
frameborder="0" marginwidth="0" marginheight="0" scrolling="no"
onload="javascript:changeHeight(this);"></iframe>
Ciao a tutti!
Alla prossima!
StLuca