Using the following javascript function
<script language="JavaScript" type="text/JavaScript">
<!--
function NewJumpMenu(targ,selObj){
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'"
}
//-->
</script>
I am able to jump to wherever I want on my page using my little A tags. The problem is the focus is still on my combo box after I make the jump so if I try to use the mouse to scroll with it jumps me all over the place. Can someone suggest how this can be done so that the focus goes back to the page? Thanks very much.
<script language="JavaScript" type="text/JavaScript">
<!--
function NewJumpMenu(targ,selObj){
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'"
//-->
</script>
I am able to jump to wherever I want on my page using my little A tags. The problem is the focus is still on my combo box after I make the jump so if I try to use the mouse to scroll with it jumps me all over the place. Can someone suggest how this can be done so that the focus goes back to the page? Thanks very much.