ho usato questo codice:
<html>
<head>
<title>Menu che scorre insieme alla pagina</title>
<script language="javascript">
<!--
var timer = 0;
function MyMenu()
{
document.getElementById('menu').style.pixelTop = document.body.scrollTop;
timer = setTimeout("MyMenu()", 1);
}
function Stop()
{
clearTimeout(timer);
}
//-->
</script>
</head>
<body onload="MyMenu()" onunload="Stop()">
<div id="menu" style="position: Absolute;">
Menu
lukeonweb.net
Ducati Dreams Club
MR Webmaster
</div>
<p align="center">Scorri la pagina</p>
</body>
</html>
funziona ma mi scrolla anche gli altri div????
come posso fare???