Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. ccApp.checkRecaptcha = function($form) {
  2. res = $form.find('.g-recaptcha-response').val();
  3. if (res == "" || res == undefined || res.length == 0)
  4. return false;
  5. else
  6. return true;
  7. }
  8.  
  9. $(document).on('submit', '.ajax-form', function(event) {
  10.  
  11. var $form = $(this);
  12.  
  13. if(!ccApp.checkRecaptcha($form)) {
  14. alert('Por favor, marque a caixa "Não sou um robô"');
  15. return false;
  16. }
  17.  
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement