Hi, I have one control with some asp form elements, but how do I get the form elements in my other control. I usually do jQuery('#<%= MyDropDownList.ClientID %>).val(), but this is not possible since it is in the other control. How do I access the element without hardcoding it?
So to sum it up: Control 1: Asp:DropDownList Control 2: Needs access to the value in the asp:DropDownlist from control 1 through jQuery.