Support

Account

Home Forums Add-ons Repeater Field Disable 'are you sure' on repeater delete Reply To: Disable 'are you sure' on repeater delete

  • I know, I’m late to this post. Still, here’s a quick and easy solution:

    
    $('.acf-form').on('click', '[data-event="remove-row"]', function(e) {
       $(this).click();
    });
    

    …mimics the double click 🙂