Vorrei che lo scroll dell'iframe stesse tutto a destra. Ho questo codice che non funziona però. Perchè? Cosa sbaglio?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript"><!--
function alignRight() {
// can't be done
}
//--></script>
<script language="JavaScript1.1"><!--
function alignRight() {
principale.scroll(1000000,0);
}
//--></script>
<script language="JavaScript1.2"><!--
function alignRight() {
principale.scrollTo(1000000,0);
}
//--></script>
<body onLoad="alignRight();">
<body>
<iframe src="http://www.yahoo.it" width="468" height="500" scrolling="NO" name="principale">
</iframe>
</body>
</html>