Hi everyone, it's been a while since the last time I posted, but hopefully someone can help me.
My drop down list does not refresh the item. Here is an example, in the drop down there are Fraternity group names - Alpha Epsilon Pi, Alpha Gamma Rho, Alpha Kappa Lambda, etc. If u choose Alpha Epsilon Pi in the drop down list, it goes to the page specific to that group. Once I'm at the page and hit my "back" button in my browser, it goes back to the main page that holds the jump menu, but Alpha Epsilon Pi is still shown in the drop down. How can I make the drop down list (jump menu) refresh when someone hits the back button on their browser?
Before any group is chosen the drop down begins with "Choose your Fraternity..." this is what I need it to refresh back to when you hit the back button in the browser. Thanks for all your help. Here is the java.
CODE
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
Here is the HTML
CODE
<form action="" name="frmJump">
<select id="PID" class="quickshop" onchange="MM_jumpMenu('parent',this,0)" name="PID">
<option>Choose your Fraternity...</option>
<option value="/alpha-epsilon-pi-store.aspx">Alpha Epsilon Pi</option>
<option value="/alpha-gamma-rho-store.aspx">Alpha Gamma Rho</option>
<option value="/alpha-kappa-lambda-store.aspx">Alpha Kappa Lambda</option>
</select>
</form>
This post has been edited by Shadow OSX: 22 Jun, 2009 - 09:51 AM