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

emtu.sp.gov.br/parceiros/sec/primeiroacesso.htm

76.27 20 236
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 20 34 453 473 984 991 1048 1251
20 <![CDATA[<script type="text/javascript"> console.log(window.location.protocol); // redireciona a pagina se acessar como http if(window.location.protocol == 'http:') { location.href = location.href.replace("http://", "https://"); } if(window.location.host == 'emtu.sp.gov.br'){ location.href = location.href.replace("emtu.sp.gov.br", "www.emtu.sp.gov.br"); } </script>]]>
34 <![CDATA[<script> // redireciona a pagina se acessar como http if(window.location.protocol == 'http:') { location.href = location.href.replace("http://", "https://"); } function Contraste(e) { if (e.keyCode === 13) { window.toggleContrast(); } } </script>]]>
453 <![CDATA[<script> function myFunction() { var x = document.getElementById("myTopnav"); if (x.className === "topnav") { x.className += " responsive"; } else { x.className = "topnav"; } } </script>]]>
473 <![CDATA[<script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-17081920-1'); </script>]]>
984 <![CDATA[<script> new window.VLibras.Widget('https://www.vlibras.gov.br/app'); </script>]]>
991 <![CDATA[<script> //Cookie Disclaimer LGPD $(document).ready(function () { checkCookie(); }); function setCookie() { var d = new Date(); var exdays = 7; var cname = "username"; var cvalue = "emtusp"; d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000)); //d.setTime(d.getTime() + (exdays * 1 * 1 * 60 * 1000)); var expires = "expires=" + d.toUTCString(); //alert(expires); document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/"; document.querySelector(".box-cookies").classList.add('hideCookie'); } function getCookie(cname) { var name = cname + "="; var decodedCookie = decodeURIComponent(document.cookie); var ca = decodedCookie.split(';'); for (var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return ""; } function checkCookie() { var user = getCookie("username"); if (user == "emtusp") { document.querySelector(".box-cookies").classList.add('hideCookie'); } else { user = "emtusp"; if (user != "" && user != null) { document.querySelector(".box-cookies").classList.remove('hideCookie'); } } } </script>]]>
1048 <![CDATA[<script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-17081920-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script>]]>
1251 <![CDATA[<script type="text/javascript"> var Local; function BuscaEscola() { $('#divBuscaEscola').modal('show'); BuscaDepartamento(); } function BuscaDepartamento() { $.post("/parceiros/sec/mensagem.asp", { acao: 'departamento' }, function (result) { if (result == "") { Mensagem('Falha no carregamento do departamento<br>Tente novamente', ''); } else { var linha = "<option value=''></option>"; $.each(result, function (i, valor) { linha += "<option value='" + valor.NomeDep + "'>" + valor.NomeDep + "</option>" }); $('#bDepartamento').html(linha); }; $('#bDepartamento').focus(); }, "JSON"); } function buscaEscola() { if (parseInt($('#bde').html()) >= parseInt($('#bate').html())) { $('#bde').html(1) } $("#Aguarde").modal('show'); $("#divTabelaEscola").hide(); $.post("/parceiros/sec/mensagem.asp", { acao: 'escola', Departamento: $('#bDepartamento').val(), Municipio: $('#bMunicipio').val(), Escola: $('#bEscola').val(), p: $('#bde').html(), Endereco: $('#bEndereco').val() }, function (result) { if (result == "") { Mensagem('Busca não retornou valor. Tente novamente.', ''); $("#Aguarde").modal('hide'); } else { var linha = ''; $.each(result, function (i, valor) { if (valor.Escola != '-') { linha += "<tr class='tr' onclick='PegaEscola(" + i + ")'>" + "<td id='CodEsc" + i + "'>" + valor.CodEsc + "</td>" + "<td id='NomEsc" + i + "'>" + valor.Escola + "</td>" + "<td id='EndEsc" + i + "'>" + valor.Endereco + "</td>" + "<td id='NumEsc" + i + "'>" + valor.Numero + "</td>" + "<td id='BaiEsc" + i + "'>" + valor.Bairro + "</td>" + "<td id='MunEsc" + i + "'>" + valor.Municipio + "</td>" + "<td id='CepEsc" + i + "'>" + valor.CEP + "</td>" + "<td id='RedEsc" + i + "'>" + valor.rede + "</td>" + "</tr>"; } $('#bde').html(valor.de); $('#bate').html(valor.ate); $('#btotal').html(valor.Total); }); $("#bTabelaEscola").html(linha); $("#divTabelaEscola").show(); $("#Aguarde").modal('hide'); Ilumina(); }; }, "JSON"); } function buscaMunicipio() { $("#divTabelaEscola").hide(); $('#bMunicipio').html(''); $.post("/parceiros/sec/mensagem.asp", { acao: 'cidade', departamento: $('#bDepartamento').val() }, function (result) { if (result == "") { Mensagem('Falha no buscar o munic&iacute;pio<br>tente novamente', ''); } else { var linha = "<option value=''></option>"; $.each(result, function (i, valor) { linha += "<option value='" + valor.Mun + "'>" + valor.Mun + "</option>" }); $('#bMunicipio').html(linha); $('#bMunicipio').focus(); }; }, "JSON"); } function Confirmar(str, local) { $('#ConteudoConfirmar').html(''); $('#ConteudoConfirmar').append(str); $('#Confirmar').modal('show'); Local = local; } function Mensagem(str, local) { $('#ConteudoMensagem').html(''); $('#ConteudoMensagem').append(str); $('#Mensagem').modal('show'); Local = local; } function MensagemRedireciona(str, local) { $('#ConteudoMensagemRedireciona').html(''); $('#ConteudoMensagemRedireciona').append(str); $('#MensagemRedireciona').modal('show'); $('#btnRedireciona').focus(); Local = local; } function FecharMensagem() { $(Local).focus(); $('#Mensagem').hide(); } function FecharMensagemRedireciona() { window.location.href = Local; } </script>]]>