I have a dropdown: <asp:DropDownList id="dropdownid" runat="server" class=blah"/>
in my jQuery, I assign change event like this:
$('#dropdownid').change(function() {......});
Now, this works when I select different value from the dropdown, however let's say I want to select the same value again. (because I want to make another call with the same value) So, when I select it again, (without changing the value) just by clicking on the selected value from the dropdown and "selecting" it again, no event fires. Is there another event in jquery that I have to assign to it? what's the workaround?