|
-
Apr 12th, 2002, 08:52 PM
#2
Fanatic Member
<script>
function makeChange(){
if (frmMain.lstAnswer.options[1].selected)
frmMain.lstResult.options[2].selected = true;
}
</script>
<form NAME = "frmMain">
<select NAME = "lstAnswer" ONCHANGE = "makeChange();">
<option VALUE = "Any">Any</option>
<option VALUE = "Yes">Yes</option>
<option VALUE = "No">No</option>
</select>
<select NAME = "lstResult">
<option VALUE = "First">First</option>
<option VALUE = "Second">Second</option>
<option VALUE = "Third">Third</option>
</select>
</form>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|