Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. // Prevent Multiple Clicks on Contact Form 7 Submissions
  2. jQuery(document).on('click', '.wpcf7-submit', function(e){
  3. if( jQuery('.ajax-loader').hasClass('is-active') ) {
  4. e.preventDefault();
  5. return false;
  6. }
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement