I need to find an DropDownList with class addressControlCountry. How?
<div id="myDiv">
<asp:DropDownList runat="server" CssClass="addressControlCountry" />
</div>
This doesn't work
$('#myDiv .addressControlCountry')
Try this
$('#myDiv').find('.addressControlCountry');
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With