717
| <![CDATA[<script type="text/javascript">
$('#FormularioSolicitacaoParaEventos').on('submit',function(){
var googleResponse = $('#g-recaptcha-response').val();
if(!googleResponse){
$('.alertRecaptcha').removeClass('hidden');
return false;
}else{
$('.alertRecaptcha').addClass('hidden');
return true;
}
});
jQuery(function($){
// $("#data").focusin(function(){$(this).mask("99/99/9999");});
$("#cnpj").focusin(function(){$(this).mask("99.999.999/9999-99");});
$("#resptelefone").focusin(function(){$(this).mask("(99)99999999?9");});
$("#resptelefone").focusout(function(){
var phone, element;
element = $(this);
element.unmask();
phone = element.val().replace(/\D/g, '');
if(phone.length > 10) {
element.mask("(99)99999-999?9");
} else {
element.mask("(99)9999-9999?9");
}
}).trigger('focusout');
$("#coordtelefone").focusin(function(){$(this).mask("(99)99999999?9");});
$("#coordtelefone").focusout(function(){
var phone, element;
element = $(this);
element.unmask();
phone = element.val().replace(/\D/g, '');
if(phone.length > 10) {
element.mask("(99)99999-999?9");
} else {
element.mask("(99)9999-9999?9");
}
}).trigger('focusout');
});
/* Validação se o campo for preenchido */
function validate(theForm){
if(theForm.nomeevento.value==""){
alert("Digite a Denominação do Evento");
theForm.nomeevento.focus();
return false;
}
if(theForm.data.value==""){
alert("Digite a Data do Evento");
theForm.data.focus();
return false;
}
if(theForm.horarioinicio.value==""){
alert("Digite a Horário de Início");
theForm.horarioinicio.focus();
return false;
}
if(theForm.horariotermino.value==""){
alert("Digite a Horário de Término");
theForm.horariotermino.focus();
return false;
}
if(theForm.localevento.value==""){
alert("Digite o Local do Evento");
theForm.localevento.focus();
return false;
}
if(theForm.razaosocial.value==""){
alert("Digite a Razão Social");
theForm.razaosocial.focus();
return false;
}
if(theForm.cnpj.value==""){
alert("Digite o CNPJ");
theForm.cnpj.focus();
return false;
}
if(theForm.endereco.value==""){
alert("Digite o Endereço");
theForm.endereco.focus();
return false;
}
if(theForm.respnome.value==""){
alert("Digite o nome do Responsável");
theForm.respnome.focus();
return false;
}
if(theForm.resptelefone.value==""){
alert("Digite o Telefone do Responsável");
theForm.resptelefone.focus();
return false;
}
if(theForm.respemail.value==""){
alert("Digite o E-mail do Responsável");
theForm.respemail.focus();
return false;
}
if(theForm.coordnome.value==""){
alert("Digite o nome do Coordenador");
theForm.coordnome.focus();
return false;
}
if(theForm.coordtelefone.value==""){
alert("Digite o telefone do Coordenador");
theForm.coordtelefone.focus();
return false;
}
if(theForm.coordemail.value==""){
alert("Digite o e-mail do Coordenador");
theForm.coordemail.focus();
return false;
}
if(theForm.objetivos.value==""){
alert("Digite os Objetivos");
theForm.objetivos.focus();
return false;
}
if(theForm.publicoestimado.value==""){
alert("Digite o Público Estimado");
theForm.publicoestimado.focus();
return false;
}
if(theForm.infraestrutura.value==""){
alert("Digite o Infra-estrutura");
theForm.infraestrutura.focus();
return false;
}
if(theForm.planta.value==""){
alert("Digite Informações sobre Planta com as metragens do espaço utilizado pelo evento");
theForm.planta.focus();
return false;
}
if(theForm.cronograma.value==""){
alert("Digite Informações sobre Cronograma para montagem e desmontagem");
theForm.cronograma.focus();
return false;
}
if(theForm.quantequipe.value==""){
alert("Digite Informações sobre Quantidade de pessoas na equipe");
theForm.quantequipe.focus();
return false;
}
if(theForm.distribuicaomaterial.value==""){
alert("Haverá distribuição de brindes, panfletos, ou exposição de logomarcas?");
theForm.distribuicaomaterial.focus();
return false;
}
if(theForm.interdicaopublica.value==""){
alert("Haverá interdição de via pública?");
theForm.interdicaopublica.focus();
return false;
}
if(theForm.docprogramacao.value==""){
alert("Insira o Documento com Programação");
theForm.docprogramacao.focus();
return false;
}
if(theForm.documentos.value==""){
alert("Insira Cópia dos documentos");
theForm.documentos.focus();
return false;
}
}
</script>]]>
|