I have a frameset with two frames. The top frame controls what is displayed in the bottom frame. The top frame contains a select box with onChange=form.submit(), submitting a value to the bottom frame that determines its content.
Great, but there's an annoying side effect. After you select a value and the bottom frame reloads, the select box is still focused, so using your mouse wheel to try to scroll causes the options in the select box to scroll, rather than the content in the bottom frame.
Ok, so I tried making it:
onChange="form.submit(); this.blur();"
but it didn't produce the desired (actually, any) result in IE 6.0.
Any Ideas on how I can accomplish this seemingly simple task?
TIA! Brad Gunsalus
Cymtec Systems, Inc.
bgunsalus@cymtec.com
Great, but there's an annoying side effect. After you select a value and the bottom frame reloads, the select box is still focused, so using your mouse wheel to try to scroll causes the options in the select box to scroll, rather than the content in the bottom frame.
Ok, so I tried making it:
onChange="form.submit(); this.blur();"
but it didn't produce the desired (actually, any) result in IE 6.0.
Any Ideas on how I can accomplish this seemingly simple task?
TIA! Brad Gunsalus
Cymtec Systems, Inc.
bgunsalus@cymtec.com