How to find server control using jquery e.g
$(".tab1").find("<%=lblTab1Heading.ClientID%>"); throws exception thrown & not caught
You missed the # for IDs
// here
$(".tab1").find("#<%=lblTab1Heading.ClientID%>");
If for some reason it is not working with the template parser, you can use the $= selector, like:
$(".tab1").find("[id$=lblTab1Heading]");
jQuery API
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