GACguy
2nd March 2002, 10:59
In case noone has gotten around to it, I think I may have
found the problem with the Quick Links not doing anything
when you select them. There are two things missing.
1st) The following needs to be added inside the <head> tag:
<script language="JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
//-->
</script>
2nd) There is a pair of single quotes missing in the following:
<select name="menu1" onChange="MM_jumpMenu(parent,this,0)">
The single quotes must be present around the word "parent" so that the line looks like so:
<select name="menu1" onChange="MM_jumpMenu('parent',this,0)">
----------------------------------------
btw, the zero in MM_jumpMenu('parent',this,0) might need to be a 1 in order for
the words "Quick Links" to reset after having clicked on one of
the options.
Hopefully this will make it work under all browsers. :)
Keep up the great work.
found the problem with the Quick Links not doing anything
when you select them. There are two things missing.
1st) The following needs to be added inside the <head> tag:
<script language="JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
//-->
</script>
2nd) There is a pair of single quotes missing in the following:
<select name="menu1" onChange="MM_jumpMenu(parent,this,0)">
The single quotes must be present around the word "parent" so that the line looks like so:
<select name="menu1" onChange="MM_jumpMenu('parent',this,0)">
----------------------------------------
btw, the zero in MM_jumpMenu('parent',this,0) might need to be a 1 in order for
the words "Quick Links" to reset after having clicked on one of
the options.
Hopefully this will make it work under all browsers. :)
Keep up the great work.