JohnnyBGoode
Programmer
I have a <SELECT> tag as follows:
The <SELECT> tag MUST be a small width (to fit on the page) So, the last <option> is getting cut off on my page.
Is there a way to (when I open the drop-down), to have the entire value displayed hovering over all other objects on the page. This way, the <SELECT> object is still a certain size, but when it is opened, you can still read the full value. Is this possible?
Is there a way to use the "alt=blah" attribute (usually used for images)?
Thanx in advance,
JBG
Code:
<select name="firstName" id="firstName" style="width=50px">
<option value="0">Alla</option>
<option value="1">Alabama</option>
<option value="2">Boris</option>
<option value="3">Bella-Hermoza-Chicka</option>
</select>
Is there a way to (when I open the drop-down), to have the entire value displayed hovering over all other objects on the page. This way, the <SELECT> object is still a certain size, but when it is opened, you can still read the full value. Is this possible?
Is there a way to use the "alt=blah" attribute (usually used for images)?
Thanx in advance,
JBG