Collapse/Expand Element in Wix Repeater

PHOTO EMBED

Sat Sep 04 2021 07:30:54 GMT+0000 (Coordinated Universal Time)

Saved by @LazzyCoder #javascript

export function openbtn_click_1(event) {
    let $item = $w.at(event.context);

    if ($item("#box1").collapsed) {
      // #box1 = #element you want to expand
        $item("#box1").expand();

    } else {
        $item("#box1").collapse();
    }
}
content_copyCOPY

This Snippets will work on Wix velo Repeater

https://www.thiscodeworks.com/how-to-expand-and-collapse-elements-inside-repeaters-in-wix-wix-howto/5e10ce3296432f6f7b798b33