Hi,
<form name="frm">
<input type="checkbox" name="hobby1" value="Musik"> Musik <br>
<input type="checkbox" name="hobby2" value="Computer"> Computa <br>
<input type="chkecbox" name="hobby3" value="Mathe!"> Mathematik! <br>
...<input type="button" value="Zeige Hobbys" onClick="zeigeAlert();">
</form>
So bitte nicht, sondern so:
<input type="checkbox" name="hobby1" id="hobby1" value="Musik"><label for="hobby1">Musik</label><br>
<input type="checkbox" name="hobby2" id="hobby2" value="Computer"><label for="hobby2>Computer</label><br>
...
oder
<label><input type="checkbox" name="hobby1" value="Musik"> Musik</label><br>
<label><input type="checkbox" name="hobby2" value="Computer"> Computer</label><br>
weil dann die klickbare Fläche größer ist.
cu,
Andreas
--
[Warum nennt sich Andreas hier MudGuard?](http://MudGuard.de/)
[O o ostern ...](http://ostereier.andreas-waechter.de/)
Fachfragen unaufgefordert per E-Mail halte ich für unverschämt und werde entsprechende E-Mails nicht beantworten. Für Fachfragen ist das Forum da.