I am using the Javascript function MM_jumpMenu('parent',this,0):
//This function refreshes the page with the given id (for instance, event occurs when an option in the select box is clicked.
function MM_jumpMenu(targ,selObj,restore)
{ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
I have a select box and based on what value I am selecting, the page refreshes (reloads) back to the same page with some GET values.
But, I already have some values entered by the user and I want to retain those values when the page reloads. I do not want to use the GET method as the data is sensitive.
Can you suggest me some way to do this?
Thank you.
Amy.




