1123
| <![CDATA[<script type="text/javascript">
$(document).ready(function () {
$('#btn-enviar').prop('disabled', true);//desativa o botão enviar
$('#g-recaptcha').hide();//esconde o captcha
validate();
$('#natureza_juridica, #nome, #documento_identificacao, #sexo, #faixa_idade, #escolaridade, #cep, #endereco, #bairro, #uf, #id_cidade, #tipo_contato, #email, #descricao').keypress(validate);
$('#natureza_juridica, #nome, #documento_identificacao, #sexo, #faixa_idade, #escolaridade, #cep, #endereco, #bairro, #uf, #id_cidade, #tipo_contato, #email, #descricao').change(validate);
if($('#natureza_juridica').val() !== ''){
checkNaturezaJuridica();
}
});
$('#form-ouvidoria').on('submit', function(event){
if (grecaptcha.getResponse() == ""){
alert("Você não clicou no reCAPTCHA, por favor, faça!");
return false;
event.preventDefault();
}
$('#modalLoading').modal('show');
return true;
});
$("#natureza_juridica").change(function () {
checkNaturezaJuridica();
});
function validate() {
if ($("#natureza_juridica").val() === '1') {
if ($('#natureza_juridica').val().length > 0 && $('#nome').val().length > 0 && $('#documento_identificacao').val().length > 0 && $('#sexo').val().length > 0 && $('#faixa_idade').val().length > 0 && $('#escolaridade').val().length > 0 && $('#cep').val().length > 0 && $('#endereco').val().length > 0 && $('#bairro').val().length > 0 && $('#uf').val().length > 0 && $('#id_cidade').val().length > 0 && $('#tipo_contato').val().length > 0 && $('#email').val().length > 0 && $('#descricao').val().length > 0) {
$('#g-recaptcha').show(); //exibe o reCaptcha
}else{//se mudar de ideia ...
$('#g-recaptcha').hide(); //o reCaptcha se esconde novmanete
}
}else{
if ($('#natureza_juridica').val().length > 0 && $('#nome').val().length > 0 && $('#documento_identificacao').val().length > 0 && $('#cep').val().length > 0 && $('#endereco').val().length > 0 && $('#bairro').val().length > 0 && $('#uf').val().length > 0 && $('#id_cidade').val().length > 0 && $('#tipo_contato').val().length > 0 && $('#email').val().length > 0 && $('#descricao').val().length > 0) {
$('#g-recaptcha').show();//exibe o reCaptcha
}else{//se mudar de ideia ...
$('#g-recaptcha').hide();//o reCaptcha se esconde novmanete
}
}
}
function enableSend() {
$('#btn-enviar').prop('disabled', false);//quando o captcha é confirmado, ativa o botao enviar
}
$('#uf').change(function () {
searchCitys();
});
if($('#uf').val() !== ''){
$.post('https://transparencia.amaraji.pe.gov.br/getmunicipios_front_ajax', {sigla_uf: $('#uf').val(), _token: 'fPMpvQMfa0FMbkjdkThvZv7J2ePz8FaQSdiKnAJG'}, function (data) {
if (data.result === 'true') {
$('#id_cidade').html('');
$('#id_cidade').html('<option value="" selected="selected">Selecione o município</option>');
for (var i = 0; i < data.cidades.length; i++) {
$('#id_cidade').append('<option value="' + data.cidades[i].id + '">' + data.cidades[i].nome + '</option>');
}
$('#id_cidade').val('');
} else {
$('#id_cidade').html('');
$('#id_cidade').html('<option value="" selected="selected">Selecione o município</option>');
toastr["warning"](data.mensagem, "Atenção");
}
});
}
function searchCitys(){
$.post('https://transparencia.amaraji.pe.gov.br/getmunicipios_front_ajax', {sigla_uf: $('#uf').val(), _token: 'fPMpvQMfa0FMbkjdkThvZv7J2ePz8FaQSdiKnAJG'}, function (data) {
if (data.result === 'true') {
$('#id_cidade').html('');
$('#id_cidade').html('<option value="" selected="selected">Selecione o município</option>');
for (var i = 0; i < data.cidades.length; i++) {
$('#id_cidade').append('<option value="' + data.cidades[i].id + '">' + data.cidades[i].nome + '</option>');
}
} else {
$('#id_cidade').html('');
$('#id_cidade').html('<option value="" selected="selected">Selecione o município</option>');
toastr["warning"](data.mensagem, "Atenção");
}
});
}
function checkNaturezaJuridica(){
if ($("#natureza_juridica").val() === '1') {
$('#doctxt').html("CPF");
$("#documento_identificacao").removeAttr('disabled');
$("#documento_identificacao").val("");
$("#documento_identificacao").removeClass('cnpj');
$("#documento_identificacao").mask('000.000.000-00', {reverse: true});
$('#box-pessoal').removeClass('hidden');
$('#sexo').removeAttr('disabled');
$('#faixa_idade').removeAttr('disabled');
$('#escolaridade').removeAttr('disabled');
$('#nometxt').html('Nome');
} else {
$('#doctxt').html("CNPJ");
$("#documento_identificacao").removeAttr('disabled');
$("#documento_identificacao").val("");
$("#documento_identificacao").removeClass('cpf');
$("#documento_identificacao").mask('00.000.000/0000-00', {reverse: true});
$('#box-pessoal').addClass('hidden');
$('#sexo').attr('disabled', 'disabled');
$('#faixa_idade').attr('disabled', 'disabled');
$('#escolaridade').attr('disabled', 'disabled');
$('#nometxt').html('Razão Social');
}
}
</script>]]>
|