Advertisement
fakesamgregory

Webflow Forms Masterclass: Advanced Recaptcha v2

Feb 25th, 2025
466
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. /*
  3.  * Tutorial available: https://youtu.be/J427qobk8MI
  4.  * Watch the entire Webflow forms masterclass: https://www.youtube.com/playlist?list=PLlufJ1b4uSqUFaSJoV2m4v3VdPB91m5Hs
  5.  */
  6.  
  7.  
  8. // get your form element
  9. const $form = $('[data-your-form-element]');
  10.  
  11. if ($form.length) {
  12.     $form.on('submit', function() {
  13.         // Get the recaptcha response of the currently submitted form
  14.         const recaptchaResponse = $(this).find('.g-recaptcha-response').val();
  15.  
  16.         if (recaptchaResponse.length) {
  17.             // do the thing you want to do
  18.         }
  19.     });
  20. }
  21. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement