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

Sites Pertecentes a (o) PR

Endereço Nota Erros Avisos

camaralaranjal.pr.gov.br/portal/portal-pedido-informa
coes.php

77.99 67 446
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 133 412
133 <![CDATA[<script type="text/javascript"> function pesquisar(){ var conteudo = document.getElementById('txtConteudoPesquisar').value; if(conteudo.length<2){ alert('Você deve informar um mínimo de 2 caracteres para efetuar a busca!'); document.getElementById('txtConteudoPesquisar').focus(); return; }else{ window.location = './portal-pesquisar.php?c='+document.getElementById('txtConteudoPesquisar').value; return; } } </script>]]>
412 <![CDATA[<script language="javascript"> $(document).ready(function() { $("#txtCEP").mask("99999-999",{placeholder:" "}); $('.soNumeros').keypress(function(event) { var tecla = (window.event) ? event.keyCode : event.which; if ((tecla > 47 && tecla < 58)) return true; else { if (tecla != 8) return false; else return true; } }); $('[id^=detail-]').hide(); $('.toggle').click(function() { $input = $( this ); $target = $('#'+$input.attr('data-toggle')); $target.slideToggle(); }); $("#btEnviar").click(function(){ if($("#txtNome").val()==''){ alert('Infome o Nome Completo!'); $("#txtNome").focus(); return false; } if($("#txtEndereco").val()==''){ alert('Informe o Endereço!'); $("#txtEndereco").focus(); return false; } if($("#txtNumero").val()==''){ alert('Informe o Número!'); $("#txtNumero").focus(); return false; } if($("#txtBairro").val()==''){ alert('Informe o Bairro!'); $("#txtBairro").focus(); return false; } if($("#txtCEP").val()==''){ alert('Informe o CEP!'); $("#txtCEP").focus(); return false; } if($("#txtUF").val()==''){ alert('Informe o Estado!'); $("#txtUF").focus(); return false; } if($("#txtMunicipio").val()==''){ alert('Informe o Município!'); $("#txtMunicipio").focus(); return false; } if($("#txtTelefone").val()==''){ alert('Informe o Telefone!'); $("#txtTelefone").focus(); return false; } if($("#txtEmail").val()==''){ alert('Informe o E-mail!'); $("#txtEmail").focus(); return false; } if($("#txtSolicitacao").val()==''){ alert('Informe o conteúdo da Solicitação!'); $("#txtSolicitacao").focus(); return false; } $('#frmDados').submit(); $('#btEnviar').attr("disabled", true); return false; }); }); $(window).load(function() { $("#txtNome").focus(); }); </script>]]>