Ciao a tutti,
io ho un javascripta che mi fa il resize della pagina,
<script language="javascript">
function res(x, y) {
self.resizeTo(x, y);
}
</script>
<body onLoad="res(800, 600);">
e funziona, solo che quando metto questo codice in un frameset, non funziona più....dove sbaglio???
<html>
<head>
<script language="javascript">
function res(x, y) {
self.resizeTo(x, y);
}
</script>
</head>
<frameset rows="77,410,*" framespacing="0" border="0" frameborder="0">
<frame ame="middle" target="bottom" src="body.htm" marginwidth="0" marginheight="0" scrolling="auto">
<frame name="bottom" src="footer.htm" target="middle">
</frameset>
<noframes>
<body onLoad="res(800, 600);">
</body></noframes>
</html>