disabled form elements and events

liunx

Guest
Is there a way to still use the onclick method while a select object is disabled... I want to be able to have a select object that doesn't work but if you click on it it will popup a dialog box... it doesn't work for me but I hoped maybe somone could help....<br />
<br />
<br />
the select is setup like this :<br />
<br />
<select size="1" disabled><br />
</select><br />
<br />
if I leave it not disabled it will show one drop down at least even if I put return false; and disabled it doesn't seem to report the onclick event...<!--content-->You can try enabling it onmouseover, invoking JavaScript onclick while it's enabled, and then when the mouse moves off of it (onmouseout), disable it again.<br />
<br />
[J]ona<!--content-->
 
Back
Top