I made a full working example of atom217 code (he missed the function)
<script> function E(id) { return document.getElementById(id); } function changeit(drp,txf) { dd = E(drp); E(txf).value = dd.options[ dd.selectedIndex ].text; } </script> <div style="position:relative; top:0px; left:0px;" > <input type="text" id="TextField" style="width:140px; position:absolute; top:1px; left:1px; z-index:2; border:none;" /> <select id="DropDown" onchange="changeit('DropDown','TextField')" style="position: absolute; top: 0px; left: 0px; z-index: 1; width: 165px;" > <option selected="selected" disabled="disabled">-- Select Column --</option> <option> example option one </option> <option> example option two </option> </select> </div>
Just tried it. Works on my 4 target browsers. (I was looking for this too)
source share