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

Sites Atualizados

Lista dos novos sites adicionados a plataforma na última atualização

Endereço Nota Erros Avisos

www.camaraitajobi.sp.gov.br/CMS/proposicoes.php?id=1&
tipo=7

82.69 6 21
Recomendações Avaliadas
1.1 Respeitar os Padrões Web.

Recomendações

Número Descrição Quantidade Linhas Código Fonte
1.1.3 Presença de CSS(s) in-line 6 58 59 63 64 65 66
1.1.4 Presença de CSS(s) interno 1 2
1.1.6 Presença de javascript(s) interno 1 95
58 <![CDATA[<div id="loader" style="padding: 30px;"> <img src='images/loader_1.gif' style="width: 5%;text-align: center;position: absolute;margin: auto;top: 0;left: 0;right: 0;bottom: 0;" /> </div>]]>
59 <![CDATA[<img src='images/loader_1.gif' style="width: 5%;text-align: center;position: absolute;margin: auto;top: 0;left: 0;right: 0;bottom: 0;" />]]>
63 <![CDATA[<th style="text-align: left;">Descrição</th>]]>
64 <![CDATA[<th style="text-align: left;">Número</th>]]>
65 <![CDATA[<th style="text-align: left;">Mês</th>]]>
66 <![CDATA[<th style="text-align: left;" width="10%">Visualizar</th>]]>
2 <![CDATA[<style> table.dataTable thead th, table.dataTable thead td { padding: 10px 10px !important; } </style>]]>
95 <![CDATA[<script> $( document ).ready(function() { $("#loader").hide(); }); $(function(){ $('.btnFiltroAno').click(function() { var anoSelecionado = this.getAttribute('data-ano'); LimparInformacoes(); $.getJSON('docpublicoDB.php?search=',{ano: anoSelecionado, tipo: 7, id: 1, ajax: 'true'}, function(resultado){ CarregarInformacoes(resultado); }); }); }); function LimparInformacoes() { $('#tableDocs').DataTable().destroy(); $("#tableDocs tbody").empty(); $("#loader").show(); $('#tableDocs').hide(); } function CarregarInformacoes(resultado) { var result = ''; var tableContratos = '<th>Descrição</th>'; tableContratos += '<th>nummero</th>'; tableContratos += '<th>Arquivo</th>'; for (var i = 0; i < resultado.length; i++) { if (resultado[i].contrato == false) { result += '<tr>'; result += '<td>' + resultado[i].descArquivo + '</td>'; result += "<td width='50'>" + resultado[i].numero + "</td>"; result += '<td>' + resultado[i].mes + '</td>'; result += '<td class="text-center"><a href="' + resultado[i].caminhoArquivo + '" target="_blank"><i title="Visualizar Arquivo" class="fa fa-file-pdf-o fa-lg"></i></td>'; result += '</tr>'; } else { $("#tableDocs thead").empty(); $("#tableDocs thead").append(tableContratos); result += '<tr>'; result += '<td>' + resultado[i].descArquivo + '</td>'; result += "<td width='50'>" + resultado[i].numero + "</td>"; result += '<td class="text-center"><a href="' + resultado[i].caminhoArquivo + '" target="_blank"><i title="Visualizar Arquivo" class="fa fa-file-pdf-o fa-lg"></i></td>'; result += '</tr>'; } } $("#loader").hide(); $('#tableDocs').show(); $("#tableDocs tbody").append(result); var pageOptions = [15, 25, 50, 100]; $('#tableDocs').DataTable({ language: { url: '//cdn.datatables.net/plug-ins/1.10.22/i18n/Portuguese-Brasil.json' }, lengthMenu: pageOptions, "order": [[ 1, "desc" ]] }); } </script>]]>