Click to See Complete Forum and Search --> : reciving a click on disable drop down box


pelegk1
06-04-2003, 03:42 AM
reciving a click on disable drop down box
i have a text box that when it is "disable" mode and i click it it catches the click and gives me an alert!

when i try to do the same to a drop down box it isnt working!
why? what can i do so when i have a disabled drop down box and i click on it it becomes enabled!
thanks in advance
Peleg

Bruno
06-04-2003, 03:59 AM
I think this should help

<form name="" method="" action="">
<select name="select" onFocus="alert()">
<option>first item</option>
<option>second item</option>
</select>
</form>

pelegk1
06-04-2003, 07:27 AM
i my drop down box is disabled !!!!!