If the relay displays the browser, you can get the relay element with:
var rep = $get("<%= rpt.ClientID %>");
Otherwise wrap
<DIV id="RepeaterEL"></div>
around the repeater and access its children either through pure JavaScript (and the childNodes collection) or using jQuery, for example
$("#RepeaterEL").children("DIV").each(function(i) {
var id = $(this).attr("id");
source
share