function RedirectToPage(targ, selObj, restore) {
var vIndexValue = selObj.options[selObj.selectedIndex].value;
var vCurInd = selObj.selectedIndex;
// Making all Drops selected Index 0.........
document.getElementById("Value").selectedIndex = 0;
//alert(vIndexValue);
// Making the Curent Selected .....
selObj.selectedIndex = vCurInd;
//selObj.options[selObj.selectedIndex].value = vIndexValue;
eval(targ + ".location='" + vIndexValue + "'");
}
<select name="Value" class="Item_IB_Drop" id="Call" onchange="RedirectToPage('parent',this,0)">
<option value="#" selected="selected">Select Option Below </option>
<option value="../FolderName/PageName.aspx">DisplayName</option>
</select>
No comments:
Post a Comment