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

Sites Pertecentes a (o) MS

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 3 73 170
3 <![CDATA[<script language="JavaScript"> function valida(tf) { if (tf.nome.value == "") { alert('Digite o seu nome.'); tf.nome.focus(); return false; } if (tf.email.value == "") { alert('Digite o seu e-mail.'); tf.email.focus(); return false; } if (tf.cidade.value == "") { alert('Digite a sua cidade.'); tf.cidade.focus(); return false; } if (tf.estado.value == "") { alert('Selecione o seu Estado.'); tf.estado.focus(); return false; } if (tf.pais.value == "") { alert('Selecione o País.'); tf.pais.focus(); return false; } if (tf.comentarios.value == "") { alert('Digite os seus comentários.'); tf.comentarios.focus(); return false; } return true; } </script>]]>
73 <![CDATA[<script> function ABRIR(URL){ window.open(URL,"","status=no,menubar=no,scrollbars=yes"); } </script>]]>
170 <![CDATA[<script> $(document).ready(function() { $("#submenu").hide(); $("#ajuda").toggle(function () { $("#submenu").show("fast"); }, function () { $("#submenu").hide("fast"); } ); }); </script>]]>