Advertisement
snegir

check_form_gtm

May 14th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. function(){
  2. var emailReg = /^[A-Z0-9._%+-]+@([A-Z0-9-]+\.)+[A-Z]{2,4}$/i;
  3. var ContactForm = jQuery('#contact');
  4. if(ContactForm.find("#data_contact").val().length>0
  5. && emailReg.test((ContactForm.find("#data_email").val()))
  6. && ContactForm.find("#data_comments").val().length>0)
  7. {
  8. return true;
  9. }
  10. else
  11. {
  12. return false;
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement