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

Sites Verificados

Lista com todos os sítios que foram verificados pela TIC Web Acessibilidade. Dentro de cada domínio, há informações detalhadas sobre as páginas coletadas, bem como os erros e avisos de cada uma *.

Endereço Nota Erros Avisos

transparencia.saolourenco.mg.gov.br/Receita

74.73 37 121
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 8 52 149 274 360 364 370 540 623
52 <![CDATA[<script> //Variável global para acessar em todos os javascripts, sempre usar para não dar erro de localização de diretorios ao subir para o servidor var nameController = "RECEITA"; var action = "INDEX"; var urlControllerAction = "RECEITA_INDEX"; var caminhoFuncao = '/'; var isRefresh = false; var pageCallback = ""; </script>]]>
149 <![CDATA[<script> var numExercicioAnterior = $("#NUM_EXERCICIO").val(); function Pesquisar(pagina) { var relatorio = $("#formDados input[type='radio']:checked").val(); if (pagina == "undefined") pagina = 1; if (pagina == "") pagina = 1; if (pagina == " ") pagina = 1; $("#PAGINA_ATUAL").val(pagina); if (numExercicioAnterior == $("#NUM_EXERCICIO").val()) { buscaArvoreReceita(); } else { OpenLoader(); $.ajax({ type: "POST", data: $('#formDados').serialize(), url: caminhoFuncao + "Receita/IndexLista", success: function (partial) { $('#divResultadoLista').html(partial); CloseLoader(); numExercicioAnterior = $("#NUM_EXERCICIO").val(); $(".arvoreReceita tbody tr").click(function () { abreArvoreReceita($(this).attr('id'), $(this).attr('nivel')); }); } }); } } $(function () { Pesquisar(1) }); //function abreNivel(nivel, cod_composto) { // $("#NIVEL").val(nivel) // $("#COD_COMPOSTO").val(cod_composto) // Pesquisar(1) //} function PesquisarNew() { Pesquisar(1) } </script>]]>
274 <![CDATA[<script> function PesquisarReceitaAnalitica(pagina) { OpenLoader(); if (pagina == "undefined") pagina = 1; if (pagina == "") pagina = 1; if (pagina == " ") pagina = 1; $("#PAGINA_ATUAL").val(pagina); $.ajax({ type: "POST", data: $('#formDadosReceitaAnalitica').serialize(), url: caminhoFuncao + "ReceitaAnalitica/IndexLista", success: function (partial) { $('#divResultadoListaReceitaAnalitica').html(partial); CloseLoader(); } }); } $(function () { $('#DATA_INICIO').mask('99/99/9999'); $('#DATA_INICIO').datepicker(); $('#DATA_FIM').mask('99/99/9999'); $('#DATA_FIM').datepicker(); }); </script>]]>
360 <![CDATA[<script> $("#Receita").addClass("selecionado"); </script>]]>
364 <![CDATA[<script> $("#Receita").val("2017"); </script>]]>
370 <![CDATA[<script> function buscaArvoreReceita() { palavraProcurada = $("#DSC_CATEGORIA").val().toUpperCase(); situacaoArvore = true; abreArvoreReceitaAbreTodos(); $('.arvoreReceita tbody').find('tr').each(function () { var linhaID = $(this).attr('id'); var linhaNIVEL = $(this).attr('nivel'); var linhaClass = $(this).attr('class'); var linhaTexto = $(this).children("td:first").html().toUpperCase(); if (linhaTexto.indexOf(palavraProcurada) !== -1) { $("#" + linhaID).show(); // Abre os Pais do FIlho Encontrado if (linhaNIVEL == 3) { $("#" + linhaID.substring(0, 5)).show(); $("#" + linhaID.substring(0, 6)).show(); } if (linhaNIVEL == 4) { $("#" + linhaID.substring(0, 5)).show(); $("#" + linhaID.substring(0, 6)).show(); $("#" + linhaID.substring(0, 7)).show(); } if (linhaNIVEL == 5) { $("#" + linhaID.substring(0, 5)).show(); $("#" + linhaID.substring(0, 6)).show(); $("#" + linhaID.substring(0, 7)).show(); $("#" + linhaID.substring(0, 8)).show(); } if (linhaNIVEL == 6) { $("#" + linhaID.substring(0, 5)).show(); $("#" + linhaID.substring(0, 6)).show(); $("#" + linhaID.substring(0, 7)).show(); $("#" + linhaID.substring(0, 8)).show(); $("#" + linhaID.substring(0, 9)).show(); } if (linhaNIVEL == 7) { $("#" + linhaID.substring(0, 5)).show(); $("#" + linhaID.substring(0, 6)).show(); $("#" + linhaID.substring(0, 7)).show(); $("#" + linhaID.substring(0, 8)).show(); $("#" + linhaID.substring(0, 9)).show(); $("#" + linhaID.substring(0, 10)).show(); } if (linhaNIVEL == 8) { $("#" + linhaID.substring(0, 5)).show(); $("#" + linhaID.substring(0, 6)).show(); $("#" + linhaID.substring(0, 7)).show(); $("#" + linhaID.substring(0, 8)).show(); $("#" + linhaID.substring(0, 9)).show(); $("#" + linhaID.substring(0, 10)).show(); $("#" + linhaID.substring(0, 11)).show(); } } }); } var situacaoArvore = false; function abreArvoreReceitaAbreTodos() { $('.arvoreReceita tbody').find('tr').each(function () { var linhaID = $(this).attr('id'); var linhaNIVEL = $(this).attr('nivel'); var linhaClass = $(this).attr('class'); if ((linhaClass != "arvoreNivel1") && (linhaClass != "arvoreNivel2")) { if (situacaoArvore == false) { $("#" + linhaID).show(); } else { $("#" + linhaID).hide(); } } }); if (situacaoArvore == false) { situacaoArvore = true; } else { situacaoArvore = false; } } function abreArvoreReceita(id, nivel) { nivelProximo = eval(nivel) + 1; $('.arvoreReceita tbody').find('tr').each(function () { var linhaID = $(this).attr('id'); var linhaNIVEL = $(this).attr('nivel'); if ($('#' + linhaID).is(':visible') == false) { if (linhaNIVEL == nivelProximo) { if (linhaID.indexOf(id) !== -1) { $("#" + linhaID).toggle(); } else { $("#" + linhaID).hide(); } } else { //return false; } } else { if (linhaNIVEL > nivel) { if (linhaID.indexOf(id) !== -1) { $("#" + linhaID).hide(); } } } }); } </script>]]>
540 <![CDATA[<script> function AbreCatalogo() { OpenLoader(); $.ajax({ type: 'GET', url: "/Home/Catalogo/", success: function (data) { CloseLoader(); //MensagemLabelFull(data); $("#div_full-catalogo-servico").show(); $("#div_full-catalogo-servico").html(data); $("#ul_catalogo h2").click(function () { var id = this.id; var abrir = id.replace("ul_", "ul_abre_") $("#" + abrir + "").toggle(); }); $(".filhos-catalogo li div").click(function () { var id = this.id; var abrir = id.replace("li-filho_", "div-filho_") $("#" + abrir + "").toggle(); }); $("#fechar-catalogo-servico").click(function () { $("#div_full-catalogo-servico").toggle(); }); } }); } </script>]]>
623 <![CDATA[<script> $(function () { $(window).scroll(function (event) { if ($(this).scrollTop() > 150) { $(".fundo_menu").fadeIn(); $(".fundo_menu").addClass('fixed', 700, 'linear'); } else { $(".fundo_menu").removeClass('fixed') } }); }); </script>]]>