adding anchors to dynamic list

im trying to add anchors to the top of each item (the item is repetitive but the data is changing)
i want that there will be an anchor with the item name at the top of each item and to use an anchor menu.

Hi Nevo,

Anchors are limited in terms of placement.
wix code allows you to scroll to any element on the page using scrollTo:

$w('#elementName').scrollTo(); //will scroll the page as if 'elementName' was a normal anchor

Another important point - the $w selector allows you to select multiple elements and specify the one you wish to work with. This is relevant for you since you are using a repeated layout which generates identical element names for each item.

See more info here
http://www.wix.com/code/reference/$w.html