Note: After CF7 versio 4.6. update button disabling with arenddeboers solution doesn’t works but Epsiloncool script works with small mod:
jQuery(document).on('click', '.wpcf7-submit', function(e){
if( jQuery('.ajax-loader').hasClass('is-active') ) {
e.preventDefault();
return false;
}
});
-
This reply was modified 8 years, 2 months ago by just_me000.