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