Einzelnen Beitrag anzeigen
Alt 26.03.2007, 15:36   #9
jak
Inventar
 
Registriert seit: 13.06.2001
Beiträge: 1.830


Standard

Das einzige was mir noch einfällt wäre die Elemente per JS in einer anderen Variable zu speichern, dann aus dem select zu entfernen und am Ende wieder einzufügen:

Code:
<script type="text/javascript">
var a[2] = document.getElementById('myselect').options[2];
document.getElementById('myselect').options[2] = null;
document.getElementById('myselect').add(a[2], 2);
</script>
jak
____________________________________
Join the DNRC | Godwin\'s Law (thx@stona)
Documentation is like sex: If it\'s good, it\'s very, very good. If it\'s bad, it\'s better than nothing.
\"In theory, theory and practice are the same. In practice, they are not\" (Lawrence Berra)
jak ist offline   Mit Zitat antworten