Forum Moderators: coopster
anyway i want to be able to double click on an item for example volvo and when that happens i want a new html window to open up with all the models of volvos. then the user can select the model the want and then that model will then go into a text box on the first page...
<select name="quesLib" size="4" multiple="multiple" style="width:258px;" >
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
not sure how to do this?
<select name="quesLib" size="4" multiple="multiple" style="width:258px;" ondblclick="window.open('newPage.php?quesLib='+options[selectedIndex].value);" >
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>