Support

Account

Home Forums Front-end Issues JQuery toggle function on repeater field Reply To: JQuery toggle function on repeater field

  • Not quite sure what you’re toggling with but something like this should do it with the DOM structure you have there.

    jQuery('.leden-details').on('click', function(){
        $(this).next('.leden-show').toggle();
    });

    The next() is the trick.