Posts: 1,832
Location: Somewhere else entirely
|
Code:
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
^ This javascript is what does the jump. If you don't want the option lists to jump any where, delete this
Code:
onChange="MM_jumpMenu('parent',this,0)"
from here:
Code:
<select name="menu1" class="style1" onChange="MM_jumpMenu('parent',this,0)">
and do the same for menu2 as well.
__________________
UPDATE 0beron SET talkupation = talkupation + lots WHERE post = 'helpful';
Please login or register to view this content. Registration is FREE (aka MSN handwriting for forums)
|