Support

Account

Home Forums Add-ons Flexible Content Field Confirm delete on flexible content field row Reply To: Confirm delete on flexible content field row

  • Hi,

    i tried something like that

    var $ = jQuery;

    $(document).on('click', '.acf-flexible-content .acf-fc-remove',  function(e)
    {
    	
    if(confirm("you are about to delet an element!")){
    						
    				}else{
    					 e.stopImmediatePropagation();
                                   return false
    					}		
    
    });

    but the click event of the field is still triggered and the row gets deleted.

    any hints on that?