“I bought this guide a few days ago to prepare for my interview with Oracle. Many of the questions they asked me were from this guide. I found this book absolutely great!”
A combo box is a text field that you can type in with a drop-down menu attached. (Combo = combination, get it?) You cannot emulate this with just a select tag.
You could use javascript to overlay a text field on top of the select, and then switch between them depending on what should have focus.
Implementation is left as an exercise to the panicked interviewee.
Drop down combo box can be created using the
<SELECT> tag in HTML
Using Select tag
Example:
<select name=”gender”>
<option value=”0″ SELECTED>Male</option>
<option value=”1″ >Female</option>
</select>
A combo box is a text field that you can type in with a drop-down menu attached. (Combo = combination, get it?) You cannot emulate this with just a select tag.
You could use javascript to overlay a text field on top of the select, and then switch between them depending on what should have focus.
Implementation is left as an exercise to the panicked interviewee.
Leave an Answer/Comment