Hallo hoe kan ik een hyperlink zetten in een select? Onderstaande code heb ik geprobeerd maar het lukt niet.
<html>
<head>
<title>Zoeken</title>
</head>
<body>
<form name="overzichtleveranciers" action="zoeken.htm" method="POST">
<p>In welke tabel wilt u zoeken?</p>
<select>
<option><a href="zoekproduct.htm">Producten</a></option>
<option>Leveranciers</option>
</select>
</form>
</body>
</html>
<html>
<head>
<title>Zoeken</title>
</head>
<body>
<form name="overzichtleveranciers" action="zoeken.htm" method="POST">
<p>In welke tabel wilt u zoeken?</p>
<select>
<option><a href="zoekproduct.htm">Producten</a></option>
<option>Leveranciers</option>
</select>
</form>
</body>
</html>