Can you change the value of a select box using javascript?
For example, I have a form called 'bulbs', and in it, I have a select box that appears as the fifth select box. Can I use the following code to change it from unselected to selected:
For example, I have a form called 'bulbs', and in it, I have a select box that appears as the fifth select box. Can I use the following code to change it from unselected to selected:
| Code: |
|
<script language="javascript" type="text/javascript"> document.bulbs.options[4].selected = true; </script> |
