How to access the asp.net dropdownlist selecteditem value from javascript? I have the following code here where i want to access the dropdownlist selecteditem value in the javascript , and pass that value as a query string to another page
function Example()
{
var e = $find("ExampleDropDownList");
var strUser = e.options[e.selectedIndex].value;
alert(strUser);
window.radopen("ExampleDetail.aspx?Id=" + strUser, "Dailog");
return false;
}
<telerik:RadComboBox ID="ExampleDropDownList" runat="server" >
</telerik:RadComboBox>