Logo CEWEB.br Logo NIC.br Logo CGI.br
Home Sobre o projeto

Sites Pertecentes a (o) BA

Endereço Nota Erros Avisos

iuiu.ba.gov.br/e-sic/cadastrar

73.31 229 203
Recomendações Avaliadas
2.2 Garantir que os objetos programáveis sejam acessíveis.

Recomendações

Número Descrição Quantidade Linhas Código Fonte
2.2.6 Presença do elemento SCRIPT sem o elemento NOSCRIPT 9 906 1364 1423 1714 1740 1807 1816 1861 1869
906 <![CDATA[<script> $(document).ready(function () { $('#nav-icon4').click(function () { $(this).toggleClass('open'); let fclass = $(this).attr("class"); if (fclass === "open") { showMenu(false); } else { $(".d-actions-items").show(); $(".d-m-h").css("display", "none").addClass("d-hide"); $("#d-container").css("height", "100vh"); } $("#d-container.d-diversos").height($("#d-menu").height()); $("#d-container").css('min-height', (parseInt($(".d-menu-helper").height())+150)+'px' ); $("#d-container.d-diversos").css('min-height', (parseInt($(".d-menu-helper").height())+100)+'px' ); }); $("body .uwy.userway_p1 .uai").css("right", "0"); sessionStorage.setItem("img-back", 0); }); function slidShow(){ let img_atual = parseInt(sessionStorage.getItem("img-back")); img_atual++; if(img_atual >= $(".img-back").length){ img_atual = 0; } $(".img-back").addClass("d-hide"); $("#banner_fundo"+img_atual).removeClass("d-hide"); sessionStorage.setItem("img-back", img_atual); } function showContactModal() { if ($("#d-modal-comment").css("display") == "none") { $(".d-icon-comment").removeClass("btn-green").addClass("btn-grey"); $("#d-modal-comment").css("display", "flex"); }else{ $(".d-icon-comment").addClass("btn-green").removeClass("btn-grey"); $("#d-modal-comment").css("display", "none"); } } function showMenu(toogle = false) { if (toogle) { $('#nav-icon4').toggleClass('open'); } $(".d-actions-items").hide(); $(".d-m-h").css("display", "flex").removeClass("d-hide"); $("#d-container").css("height", "auto"); } function removeAcento(text) { text = text.toLowerCase(); text = text.replace(new RegExp('[ÁÀÂÃ]','gi'), 'a'); text = text.replace(new RegExp('[ÉÈÊ]','gi'), 'e'); text = text.replace(new RegExp('[ÍÌÎ]','gi'), 'i'); text = text.replace(new RegExp('[ÓÒÔÕ]','gi'), 'o'); text = text.replace(new RegExp('[ÚÙÛ]','gi'), 'u'); text = text.replace(new RegExp('[Ç]','gi'), 'c'); return text; } function setFilter() { let filter = $("#filter").val(); //Oculta e mostra as linhas $(".d-swap ul li .d-swap-itens li a").each(function () { let source = ($(this).data("source")); let target = $(this).parent("li"); if (removeAcento(source).toLowerCase().search(removeAcento(filter).toLowerCase()) == -1) { target.css("display", "none"); } else { target.css("display", "block"); } }); //Oculta e mostra os h2 for (let index = 1; index <= $(".d-swap ul li .d-swap-itens").length; index++) { let hide = true; $(".d-swap ul li #dsi-" + index + " li").each(function () { if ($(this).css("display") != "none") { hide = false; } }); if (hide) { $(".d-swap ul li #dsi-" + index).parent().css("display", "none"); } else { $(".d-swap ul li #dsi-" + index).parent().css("display", "block"); } } //Oculta e mostra os h1 for (let index = 0; index < $(".d-swap").length; index++) { let hide = true; for (let sub = 1; sub <= $(".d-swap ul li .d-swap-itens").length; sub++) { $("#ds-"+index+" ul li #dsi-" + sub + " li").each(function () { if ($(this).css("display") != "none") { hide = false; } }); } if (hide) { $("#ds-"+index+" h1").css("display", "none"); } else { $("#ds-"+index+" h1").css("display", "block"); } } } function showAllFilters() { if ($("#d-all-filters").css("display") === "none") { $("#d-all-filters").css("display", "flex"); } else { $("#d-all-filters").css("display", "none"); } } $("#enviar").click(function(event){ const form = "#contact-form-top "; event.preventDefault(); let errors = ""; if($(form+" #nome").val() == ""){ errors += '* O <b>Nome</b> não pode ficar em branco <br>'; } if($(form+" #telefone1").val() == ""){ errors += '* O <b>Telefone 1</b> não pode ficar em branco <br>'; } if($(form+" #email").val() == ""){ errors += '* O <b>E-mail</b> não pode ficar em branco <br>'; } if($(form+" #assunto").val() == ""){ errors += '* O <b>Assunto</b> não pode ficar em branco <br>'; } if($(form+" #mensagem").val() == ""){ errors += '* O <b>Mensagem</b> não pode ficar em branco <br>'; } if(errors.length > 0){ Swal.fire({ icon: 'error', title: 'Encontramos os seguinte(s) erro(s)', html: errors, }); }else{ $("#contact-form-top").submit(); } }); </script>]]>
1364 <![CDATA[<script> $(function () { $('#uf').change(function () { if ($(this).val()) { $('#cod_cidade').hide(); $('.carregando').show(); $.getJSON("https://iuiu.ba.gov.br/files/inc/api/cidades.ajax.php?uf=", { uf: $(this).val(), ajax: 'true' }, function (j) { var options = '<option value="">-- Escolha um munic\u00edpio --</option>'; for (var i = 0; i < j.length; i++) { options += '<option value="' + j[i].codigo + '">' + j[i].nome + '</option>'; } $('#cod_cidade').html(options).show(); $('.carregando').hide(); }); } else { $('#cod_cidade').html('<option value="">� Escolha um estado �</option>'); } }); }); </script>]]>
1423 <![CDATA[<script> $(document).ready(function() { $("#formNewAccount").submit(function(event){ var checa = ''; var tipopessoa = $('.tipopessoa:checked').val(); if ((($('#nome').val()).length == 0) && (tipopessoa == "F")) { checa = checa + '-> NOME EM BRANCO <br>'; } if ((($('#nome').val()).length == 0) && (tipopessoa == "J")) { checa = checa + '-> RAZ\u00c3O SOCIAL EM BRANCO <br>'; } if ((($('#cpfcnpj').val()).length == 0) && (tipopessoa == "F") && (possuecpf != 1)) { checa = checa + '-> CPF EM BRANCO <br>'; } if ((($('#cpfcnpj').val()).length == 0) && (tipopessoa == "J") && (possuecpf != 1)) { checa = checa + '-> CNPJ EM BRANCO <br>'; } if ($('#possuecpf:checked').val() == 1) { if (($('#tipo_documento').val()).length == 0) { checa = checa + '-> TIPO DE DOCUMENTO EM BRANCO <br>'; } if (($('#numero_documento').val()).length == 0) { checa = checa + '-> N DO DOCUMENTO EM BRANCO <br>'; } if (($('#orgao_documento').val()).length == 0) { checa = checa + '-> ORG\u00c3O EXPEDIDOR EM BRANCO <br>'; } } if (($('#possuecpf:checked').val() == 1) && ($('#aceito_termo:checked').val())) { checa = checa + '-> ACEITAR OS TERMOS E CONDI\u00c7\u00d5ES <br>'; } if (($('#email').val()).length == 0) { checa = checa + '-> E-MAIL EM BRANCO <br>'; } if (($('#confirmeemail').val()).length == 0) { checa = checa + '-> CONFIRME O E-MAIL EM BRANCO <br>'; } if (($('#email').val()) != ($('#confirmeemail').val())) { checa = checa + '-> E-MAIL N\u00c3O CONFERE <br>'; } if (($('#uf').val()).length == 0) { checa = checa + '-> ESTADO EM BRANCO <br>'; } if (($('#cod_cidade').val()).length == 0) { checa = checa + '-> MUNIC\u00cdPIO EM BRANCO <br>'; } if (($('#password').val()).length == 0) { checa = checa + '-> SENHA EM BRANCO <br>'; } if (($('#confirmapassword').val()).length == 0) { checa = checa + '-> CONFIRME SENHA EM BRANCO <br>'; } if (($('#password').val()) != ($('#confirmapassword').val())) { checa = checa + '-> SENHA N\u00c3O CONFERE <br>'; } if (checa) { event.preventDefault(); Swal.fire({ icon: 'error', title: 'Os seguinte(s) erro(s) foram encontrado(s)', html: checa, }); }else{ $(this).submit(); } }); }); jQuery(function($){ var maskBehavior = function (val) { return val.replace(/\D/g, '').length === 11 ? '(00) 00000-0000' : '(00) 0000-00009'; }, options = {onKeyPress: function(val, e, field, options){ field.mask(maskBehavior.apply({}, arguments), options); }}; $('.telefone').mask(maskBehavior, options); $(".cep").mask("99.999-999"); $(".data").mask("99/99/9999"); $(".protocolo").mask("99999999999-AAAAA", {reverse: false}); $('.cpf').mask('000.000.000-00', {reverse: false}); $('.cnpj').mask('00.000.000/0000-00', {reverse: false}); $('.numero').mask('00000000000000', {reverse: true}); }); function selecionaTipoPessoa(tipo) { if (tipo == "F") { document.getElementById('lblNome').innerHTML = "Nome"; document.getElementById('lblCpfcnpj').innerHTML = "CPF"; document.getElementById('tipo').value = 'cpf'; document.getElementById('lnFaixaEtaria').style.display = ""; document.getElementById('cpfcnpj').className = 'cpf'; document.getElementById('lnCPF').style.display = "block"; selecionaDoc(document.getElementById('possuecpf').checked); jQuery(function ($) { $('.cpf').mask('000.000.000-00', {reverse: false}); }); document.getElementById('cpfcnpj').value = document.getElementById('cpf').value; } else { document.getElementById('lblNome').innerHTML = "Raz�o Social"; document.getElementById('lblCpfcnpj').innerHTML = "CNPJ"; document.getElementById('tipo').value = 'cnpj'; document.getElementById('lnFaixaEtaria').style.display = "none"; document.getElementById('cpfcnpj').className = 'cnpj'; document.getElementById('lnCPF').style.display = "none"; document.getElementById('lnDocumentos').style.display = "none"; jQuery(function ($) { $('.cnpj').mask('00.000.000/0000-00', {reverse: false}); }); document.getElementById('cpfcnpj').value = document.getElementById('cnpj').value; } } function selecionaDoc(checked){ if (checked) { document.getElementById('lnDocumentos').style.display = ""; document.getElementById("cpfcnpj").disabled = true; } else { document.getElementById('lnDocumentos').style.display = "none"; document.getElementById("cpfcnpj").disabled = false; } } </script>]]>
1714 <![CDATA[<script> function setExperienceResponse(el, ref){ clearExperienceResponse(); let action = ($(el)[0].className).replace('face ', ''); if(!$(el).hasClass(action+'-checked')){ $(el).addClass(action+'-checked'); $('.satisfacao-message').css('display','block'); $('#actionRef').val(ref); }else{ $('.satisfacao-message').css('display','none'); $('#actionRef').val(0); } } function clearExperienceResponse(){ $('.face').map(function(index, value){ let ref = $(value).data('ref'); $(value).removeClass().addClass('face').addClass(ref); }); } </script>]]>
1740 <![CDATA[<script> $(document).ready(function(){ $("#d-container.d-diversos").height($("#d-menu").height()); }); window.addEventListener('resize', function() { $("#d-container.d-diversos").height($("#d-menu").height()); }); </script>]]>
1807 <![CDATA[<script> $( document ).ready(function() { $('#vLibras').append("<div vw class='enabled'><div vw-access-button class='active'></div><div vw-plugin-wrapper><div class='vw-plugin-top-wrapper'></div></div></div>"); new window.VLibras.Widget('https://vlibras.gov.br/app'); }); </script>]]>
1816 <![CDATA[<script> $(document).ready(function(){ if(!sessionStorage.getItem("messager-footer")){ sessionStorage.setItem("messager-footer", "true"); } if(sessionStorage.getItem("messager-footer") == "true"){ $("#messager-footer").removeClass("d-hide"); } }); function disabledMessFooter(){ $("#messager-footer").addClass("d-hide"); sessionStorage.setItem("messager-footer", "false"); } var id = new Object(); id = ["#navega h2/9/19", "#navega a/9/19", "#navega li/9/19", "#pagina_lei p/13/23", "#pagina_lei li/9/19", ".form/11/20", ".form h4/11/21", ".cabecalho_e_sic .topo .estrutura_inicial .banner_e_sic h1/20/30", ".cabecalho_e_sic .topo .estrutura_inicial .banner_e_sic h2/15/25", ".cabecalho_e_sic .topo .estrutura_inicial .links a/10/20", ".estrutura_inicial #e_sic .texto_aprensentacao h1/11/21", ".estrutura_inicial #e_sic .texto_aprensentacao /11/21", ".estrutura_inicial #e_sic .banner_right .mine span/11/21", ".barra_contato ul li .title/10/20", ".estrutura_inicial .sobre_lei /11/21", ".estrutura_inicial .outras_informacoes .titulo_pricipal h2/15/25", ".estrutura_inicial .outras_informacoes .lista ul li a/9/19", ".barra_contato ul li .title/13/23", ".barra_contato ul li .sub-titulo/9/19", "#new_e-sic .e-sic .estrutura_inicial .titulo_principal/15/25", "#new_e-sic .e-sic ul li label/9/19", "#new_e-sic .e-sic ul li div/9/19", "#new_e-sic .e-sic ul li/9/19", "#new_e-sic .e-sic .tx_14_vermelho/7/17", "#new_e-sic .e-sic .btn_success/17/27", "#new_e-sic .estrutura_inicial #e_sic #noticias_div .titulo_sombra/11/21", "#new_e-sic .estrutura_inicial #e_sic #noticias_ler /11/21", "#new_e-sic #e_sic .painel ul li a span/15/25", "#new_e-sic .e-sic #painel_table .tg .tg-7whf/9/19", ".tg .tg-d5um/9/19", "#new_e-sic .e-sic .defaul_btn/17/27"]; var swiper = new Swiper('#topo', { // pagination: '.swiper-pagination', nextButton: '.swiper-button-next', prevButton: '.swiper-button-prev', paginationClickable: true, // Disable preloading of all images preloadImages: true, // Enable lazy loading lazyLoading: true, centeredSlides: true, effect: 'fade', autoplay: 3000, autoplayDisableOnInteraction: false }); (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/pt_BR/sdk.js#xfbml=1&version=v2.9"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); </script>]]>
1861 <![CDATA[<script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-105160113-1'); </script>]]>
1869 <![CDATA[<script> var link = document.createElement('meta'); link.setAttribute('property', 'og:url'); link.content = document.location; document.getElementsByTagName('head')[0].appendChild(link); </script>]]>