jQuery(document).ready(function(){var token=null;$("form[name='informacionForm']").submit(function(event){console.log('pasndo');event.preventDefault();if(token){var l=Ladda.create($("form[name='informacionForm'] button.send[type='submit']").addClass('ladda-button')[0]);l.start();bootbox.dialog({title:$.i18n('ENVIAR DATOS'),message:$.i18n('CONFIRMO_ENVIO_QUERELLA'),show:false,size:'large',buttons:{cancel:{label:'Cerrar',callback:function(){l.stop()}},accept:{label:$.i18n('BTN_ACCEPT'),callback:function(){$.post("/"+$("#site_prefix").val()+'contactus/sendContact',{target:$('#targetI').text(),nombre:$('#nombreI').val(),email:$('#emailI').val(),subject:$('#asuntoI').val(),telefono:$('#telefonoI').val(),mensaje:$('#mensajeI').val(),recaptcha:token},function(resp){if(resp.success){bootbox.dialog({title:$.i18n('CONFIRMACION'),message:$.i18n('Envio Exitoso'),show:false,buttons:{ok:{label:$.i18n('BTN_CLOSE')}}}).on('hidden.bs.modal',function(){l.stop();$("form[name='informacionForm']")[0].reset();token=null;grecaptcha.reset();}).modal('show');}else{getErrorMessage(41,function(resp){toastr.error(resp,'ERROR');l.stop();});token=null;grecaptcha.reset();}},'json').fail(function(){l.stop();token=null;grecaptcha.reset();});}}}}).modal('show');}else{grecaptcha.execute();}});processRecaptchaToken=function(resp){token=resp;$("form[name='informacionForm']").submit();};$('#telefonoI').mask('(999)999-9999');});