I have a question. I have 2 radio buttons and my goals is that if I click on radio1 then the dropdown boxes will be disabled. Can any one help me with that?
Thanks in advance
Printable View
I have a question. I have 2 radio buttons and my goals is that if I click on radio1 then the dropdown boxes will be disabled. Can any one help me with that?
Thanks in advance
Hi,,
This is a script to enable and dusable, just maipulate this and youre away
VB Code:
<script type="text/javascript"> function disable_enable(){ if (document.all || document.getElementByid){ document.formname.elementname.disabled=!document.formname.elementname.disabled } } </script>
hope this helps
Kai