* Corriger le format L'e-mail adresse est obligatoire
Adresse:
Quel type d’engagement recherchez-vous ? (choisissez une ou plusieurs options)*:
Je souhaiterais m’engager de façon ponctuelle, notamment à l’occasion des stands de sensibilisation, évènements publics, etc.
Je cherche un engagement plus durable dans le cadre d’un groupe.
Ce champs est requis
*champs obligatoires
jQuery(function ($) { function function_600dbbec9858c() { var $form = $("form#activismForm-600dbbec9858c"); var f = { ____validateEmail: function (email) { var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/; if (!filter.test(email)) { return false } return true; }, validateForm: function () { var error = false; $form.find(".errorNote").hide(); var email = $form.find("input[name='email']").val(); if (!email) { $form.find(".errorEmail2").show(); error = true; } else if (email && !f.____validateEmail(email)) { $form.find(".errorEmail").show(); error = true; } var confirm = $form.find("input[name='confirm']").is(':checked'); if (!confirm) { $form.find(".errorConfirm").show(); error = true; } var i = 0; $form.find("input[name*='network_']").each(function(){ if( $(this).is(':checked') ){ i += 1; } }) if( i == 0 ){ error = true; $form.find(".errorNetwork").show(); } return !error; } }; $form.submit(function () { if (!f.validateForm()) { return false; } }); } function_600dbbec9858c(); });