Hallo...
ich hab ja mittlerweile auch mitbekommen, dass bei <select... im <option> der IE kein onClick akzeptiert...
Ich muß also im select tag ein onChange machen...
<select multiple name="category_auswahl[]" id="category_list" size="3">
<?php
while($row=mysql_fetch_array($result))
{ ?>
<option onclick="hidden()"><?php echo $row[0]; ?></option>
<? } ?>
<option onclick="visible()">neue Kategory anlegen</option>
</select>
ich hab ja mittlerweile auch mitbekommen, dass bei <select... im <option> der IE kein onClick akzeptiert...
Ich muß also im select tag ein onChange machen...
<select multiple name="category_auswahl[]" id="category_list" size="3">
<?php
while($row=mysql_fetch_array($result))
{ ?>
<option onclick="hidden()"><?php echo $row[0]; ?></option>
<? } ?>
<option onclick="visible()">neue Kategory anlegen</option>
</select>
Kommentar