In this Article, I explain how to get selected dropdown value usingj query in asp.net. Here I am using jquery 1.8.3 for achieve this. Here I demonstrate a simple example of binding a country with dropdownlist.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
function getvalue() {
var cbocountry = $('#cbocountry');
var selectedvalue = $('#cbocountry').val();
alert(selectedvalue);
}
</script>
<asp:DropDownList ID="cbocountry" runat="server">
<asp:ListItem Text="India" Selected="True" Value="1" />
<asp:ListItem Text="UAE" Value="2" />
<asp:ListItem Text="KSA" Value="3" />
</asp:DropDownList>
<asp:Button ID="Button1" runat="server" Text="Getselectedvalue" OnClientClick="getvalue()" />
Post your comments / questions
Recent Article
- How to programmatically modifying the AppSetting value in web.config using c#?
- TypeError [ERR_INVALID_CALLBACK]: Callback must be a function. Received undefined
- How to calculate the age from jQuery ui datepicker using c#?
- How to calculate days difference between two dates in c#?
- Changing date format in jQuery ui datepicker
- How to set value to nicedit textarea using jQuery?
- How to load data from json file in angular?
- cannot find module consider using '--resolvejsonmodule' to import module with json extension angular
Related Article