How to find nested or child repeater in asp.net using jquery or javascript
hi,how to hide or show nested or child repeaters in asp.net using jquery or javascript
$(".showorhideclass").css("display","none");
If you want to get each control as a for object then use the below code,
$(".showorhideclass").each(tobj,function(){
//here you can find your object $(this) and write whatever you want.
});