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

Sites Pertecentes a (o) RJ

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 4 46 48 58 89
1.1.4 Presença de CSS(s) interno 1 9
1.1.6 Presença de javascript(s) interno 1 123
46 <![CDATA[<table style="width:100%;height:99%;background-color:#01569F"> <tr> <td style="height:20%"> <div id="nomeprincipal" > </div> </td> </tr> <tr style="width:100%;background-color:#71A7D6"> <td> er </td> </tr> <tr> <td> er </td> </tr> </table>]]>
48 <![CDATA[<td style="height:20%"> <div id="nomeprincipal" > </div> </td>]]>
58 <![CDATA[<tr style="width:100%;background-color:#71A7D6"> <td> er </td> </tr>]]>
89 <![CDATA[<div class="modal-header" style="background-color:#f2dede"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button> <h3 class="modal-title" id="myModalLabel">Atendimento</h3> </div>]]>
9 <![CDATA[<style> .text_azul{color:blue;} span{line-height:130%;} html{overflow-y:hidden;} body{overflow-y:hidden;} </style>]]>
123 <![CDATA[<script> function chamanome(){ $('#nomeprincipal').empty(); $.ajax({ url: 'acoesmuraltv.php?acao=chamaatendimento' , dataType: 'jsonp', jsonp: 'jsoncallback', timeout: 5000, success: function(data, status){ $.each(data, function(i,item){ if(item.databr=="0"){}else{ var divmodalvaga = '<div style="color:#fff" ><b>'+item.nome+' </b> atendimento <b>'+item.tipo+'</b> </div>'; $("#nomeprincipal").append(divmodalvaga); //$('#myModalnome').modal('show') ; setTimeout(function() { //$('#myModalnome').modal('hide') ; $.ajax({ type: "GET", url: "acoesmuraltv.php?acao=deletnome", success: function(data) { //manipula os dados }, error: function() { } }); }, 5000); } }); }, error: function(){ } }); setTimeout("chamanome()", 10000); } chamanome(); </script>]]>