Customizing one item in a repeater, without affecting other items

How do I customise one item in a repeater without it affecting any of the other items? On the wix faq page it says to use wix code, but I cant seem to find the right code to do so.

You can use the Repeater.onItemReady() event handler to catch the items. In the onItemReady() handler, you can then find the specific item that you want, and customize it the way that you wish. See the code snippets in the API doc .

Hi,

Read about onItemReady() function, the $item argument represent each item in the repeater and as a result you will be able to customise each one.

Best,
Sapir