code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| <html>
<head>
<script language="JavaScript">
function go()
{
location=document.formulier.site.options[document.formulier.site.selectedIndex].value;
}
</script>
</head>
<body>
<form name="formulier">
<select name=" site"onChange="go()">
<option selected>I-Bay
<option value="http://217.120.219.102/mp3">MP3
<option value="http://217.120.219.102/test">Test
<option value="http://217.120.219.102/pub">Public
<option value="http://217.120.219.102/intranet">Intranet
<option value="http://217.120.219.102/share">Share
</select>
</form>
</body>
</html> |
Waar gaat dit niet goed?