How can I access a asp:userControl's property using jQuery
$("#<% =ucControl1.ClientID%>").find("[id$='Panel1']").hide();
I am trying to show an asp:Panel with the usercontrol and it doesnt work.
<div id="ctl00_ContentPlaceHolder1_ctl02_ucControl1_Panel1">
content....
</div>
The jQuery rendered is as follows:
$("#ctl00_ContentPlaceHolder1_ctl02_ucControl1").find("[id$='Panel1']").show();