GreGorGy
BULLSFAN
Actually, I thought this would be easy. Alas!
I have the following HTML:
No way in hell will the SELECT listbox change its height. Does anyone know if this can be done?
I have the following HTML:
Code:
....
<STYLE TYPE="text/css" TITLE="text/css">
select.selectClass
{
width: 140px;
border: 1px solid gray;
height: 200px;
}
</STYLE>
....
<SELECT NAME="mySelect" ID="mySelect" CLASS="selectClass" SIZE=5>
<OPTION>One
<OPTION>Two
<OPTION>Three
<OPTION>Four
<OPTION>Five
<OPTION>Ten
<OPTION>Twenty
</SELECT>
....
<SCRIPT TYPE="text/javascript" LANGUAGE=JAVASCRIPT CHARSET=UTF-8>
document.getElementByID("mySelect").style.height = 20;
</SCRIPT>
....
No way in hell will the SELECT listbox change its height. Does anyone know if this can be done?