Hei..
ich bin neu im forum und das ist mein erster Post:
Was ich möchte
Eine Javascript <select> livesuche. (unten weiter lesen)
So hab ich mir das vorgestellt:
Also,
ich möchte das wenn man im textfeld etwas eingibt,
dass im select danach gesucht wird, und das passende
markiert. Beispiel:
Ich gebe im Textfeld ab ein und im select wird ab markiert..
Danke im Voraus
ich bin neu im forum und das ist mein erster Post:
Was ich möchte
Eine Javascript <select> livesuche. (unten weiter lesen)
So hab ich mir das vorgestellt:
HTML:
<form>
<select style="width:100%;height:97%" size="15">
<option value="a">a</option>
<option value="b">ab</option>
<option value="c">abc</option>
<option value="usw...">usw...</option>
</select>
<div style="position:absolute;bottom:0;left:0;width:100%;">
<input type="text" style="width:100%;border-width:0px;border-style:solid;border-top-color:#D9D9D9;border-top-width:1px;" size="20"></div>
</form>
<script>
document.forms[0].elements[1].focus();
</script>
ich möchte das wenn man im textfeld etwas eingibt,
dass im select danach gesucht wird, und das passende
markiert. Beispiel:
Ich gebe im Textfeld ab ein und im select wird ab markiert..
Danke im Voraus