how i get scripting variable value in another jsp page
i m using this code..
Code:
function OnSelectionChange(select)
{
var selectedOption = select.options[select.selectedIndex];
alert ("The selected option is " + selectedOption.value);
}
i want get the selectedOption value in another jsp page. how can i get this value pls help me