Support

Account

Home Forums Add-ons Repeater Field Repeater Script Support on Custom Field Reply To: Repeater Script Support on Custom Field

  • in a javascript file you can add this code to run when a row is added to the repeater field

    (function( $ ) {

    $(".acf-input .acf-repeater").on('click a[data-event="add-row"]', function(evt, el){
        console.log(evt);
    });
    
    })( jQuery );