Support

Account

Home Forums Front-end Issues How to disable js alert in acf_form Reply To: How to disable js alert in acf_form

  • Figured it out myself:

    
    jQuery(document).ready(function()
    {
    	jQuery(window).off("beforeunload", null);
    });