Hi! If the src attributes are the same, you want to update the src attribute of the second image element. The $w(‘#repeaterImage’).src expression will return the src attribute of the first image element in the repeater. If you want to compare this with the src attribute of all the image elements in the repeater, you will need to use a loop to iterate over all the elements. The $w.onReady function runs when the page is fully loaded, so you will need to make sure that your repeater has been populated with data from the database before you try to access the src attributes of the images. If you want to update the src attribute of the second image element, you will need to use the setAttribute method.