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

Sites Pertecentes a (o) SP

Endereço Nota Erros Avisos

www.metro.sp.gov.br/en/your-trip/line-15-silver/

74.49 26 126
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 3 57 199 722
57 <![CDATA[<script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-145274-3']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script>]]>
199 <![CDATA[<script type="text/javascript"> $(function () { $("#utilidades_SiteMapPath span:first").css("display", "none"); }); </script>]]>
722 <![CDATA[<script type="text/javascript"> $(function () { var linha, estacao, estacaoLinha, xmlEstacao; var caminhoXml = '/app/trajeto/xt/estacoesTipoXML.asp'; $.ajax({ type: "GET", url: caminhoXml, dataType: "xml", success: function (xml) { $(xml).find("estacoes").each(function () { $(this).find("estacao").each(function () { linha = $(this).attr("tipo") + " - Linha " + $(this).attr("linha"); estacao = $(this).attr("nome"); estacaoId = $(this).attr("estacaoId"); xmlEstacao = this; $("#selectEmbarque")[0].options[$("#selectEmbarque")[0].options.length] = new Option(estacao + ' (' + linha + ')', estacaoId); $("#selectDesembarque")[0].options[$("#selectDesembarque")[0].options.length] = new Option(estacao + ' (' + linha + ')', estacaoId); }); }); $("#selectEmbarque").change(function () { estacaoLinha = $(this).val(); if (estacaoLinha != 0) { $(xml).find("linha").each(function () { $(this).find("estacao").each(function () { xmlEstacao = this; if (estacaoLinha == $(xmlEstacao).attr('estacaoId')) { selecionado(); } }); }); } }); $("#selectDesembarque").change(function () { estacaoLinha = $(this).val(); if (estacaoLinha != 0) { $(xml).find("linha").each(function () { $(this).find("estacao").each(function () { xmlEstacao = this; if (estacaoLinha == $(xmlEstacao).attr('estacaoId')) { selecionado(); } }); }); } }); } }); }); var alertaDisparado = false; function selecionado() { var embarque = document.getElementById('selectEmbarque'); var desembarque = document.getElementById('selectDesembarque'); if (desembarque.value != "0" && embarque.value != "0") { if (desembarque.value == embarque.value) { if (!alertaDisparado) { alert("The place of Arrival must be different from the place of boarding"); alertaDisparado = true; } else { alertaDisparado = false; } } else { window.location.href = "/en/your-trip/where-are-you-going/trajeto.aspx?origemId=" + embarque.value + "&destinoId=" + desembarque.value; } } } var slDesembarque = document.getElementById('selectDesembarque'); var slEmbarque = document.getElementById('selectEmbarque'); if (window.addEventListener) { slDesembarque.addEventListener('change', selecionado, false); slEmbarque.addEventListener('change', selecionado, false); } else { slDesembarque.attachEvent('onchange', selecionado); slEmbarque.attachEvent('onchange', selecionado); } </script>]]>