This example show you how ot make a menu that changes automatically.
Source for menu.html
<html>
<head>
<title>menu.html</title>
</head>
<body>
<form>
<select NAME=liste1 size="1" onChange="top.location.href = form.liste1.options[form.liste1.selectedIndex].value;">
<option value="page1.html" SELECTED>Page 1</option>
<option value="page2.html">Page 2</option>
<option value="page3.html">Page 3</option>
<option value="page4.html">Page 4</option>
</select>
</form>
</body>
</html>
Back