Couting the items of a repeater

Hi,

Can someone help me with the code for getting the total amount of items of a repeater. I don’t filter my repeater. Ps I’m really bad in code… So does anyone know the full code? So that I can just copy/paste?

Thanks already!

This forum is to provide you with help and support for your code issues as you have already seen in your exact same question here.
https://www.wix.com/corvid/forum/community-discussion/counting-items-of-a-repeater

if you are wanting somebody to do all your code for you so that you can simply copy and paste it, then have a look at using Wix Arena.
https://www.wix.com/arena/web-designers/1

$w.onReady( function () {
$w(“#text103”).text = $w(“#repeater2”).data.length.toString();
});

Is this good?