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

Sites Pertecentes a (o) SC

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 2 111 236
111 <![CDATA[<script> // Used to toggle the menu on small screens when clicking on the menu button function smallScreenMenu() { var x = document.getElementById("nav-small"); if (x.className.indexOf("w3-show") == -1) { x.className += " w3-show"; } else { x.className = x.className.replace(" w3-show", ""); } } function dropdownToggle(el) { //alert(el) var x = document.getElementById("demo"); var x = el.nextElementSibling; if (x.className.indexOf("w3-show") == -1) { x.className += " w3-show"; } else { x.className = x.className.replace(" w3-show", ""); } } </script>]]>
236 <![CDATA[<script type="text/javascript"> // set focus at first visible, enables and not hidden field of page: firstFieldOfPage = document.querySelectorAll( 'input:not(hidden):not([disabled]):not([readonly]), ' + 'select:not(hidden):not([disabled]):not([readonly]), ' + 'textarea:not(hidden):not([disabled]):not([readonly])')[0]; if (typeof firstFieldOfPage !== 'undefined') { firstFieldOfPage.focus(); } </script>]]>