Hi, I use jquery in a page that shouldn't refresh when radiobuttonlist items are selected.(without using AJAX) how can i call selectedindexchanged event for accessing items using by javascript?
<script src="JScripts/jquery-1.3.2.js" type="text/javascript"></script>
<ul>
<li>
<a>
<img src="Images/img.JPG" alt="" />
<p>
<strong>Meeting </strong><br/>
<asp:RadioButtonList ID="RadioButtonList1" runat="server"
OnSelectedIndexChanged="RadioButtonList1_SelectedIndexChanged">
<asp:ListItem>Title</asp:ListItem>
<asp:ListItem>Date</asp:ListItem>
</asp:RadioButtonList>
<asp:MultiView ID="MultiView1" runat="server">
<asp:View ID="View1" runat="server">
<asp:TextBox ID="Title " runat="server"></asp:TextBox></asp:View>
&n
View Complete Post