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

Sites Pertecentes a (o) PE

Endereço Nota Erros Avisos

www.irh.pe.gov.br/comunicacao/52-comunicacao

76.22 62 112
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 4 46 273 292 516
46 <![CDATA[<script type="text/javascript"> jQuery(window).on('load', function() { new JCaption('img.caption'); }); jQuery(function($){ $(".hasTooltip").tooltip({"html": true,"container": "body"}); }); </script>]]>
273 <![CDATA[<script type="text/javascript"> jQuery.noConflict(); (function( $ ) { $(function() { $('.active > ul').toggle(); $('.active_filho').click().parent().parent().addClass('active'); $('.active > ul').show(); }); })(jQuery); </script>]]>
292 <![CDATA[<script> // Read cookie function getCookie(strCookie) { var strName = strCookie + "="; var arrCookies = document.cookie.split(';'); for (var i = 0; i < arrCookies.length; i++) { var strValorCookie = arrCookies[i]; while (strValorCookie.charAt(0) == ' ') { strValorCookie = strValorCookie.substring(1, strValorCookie.length); } if (strValorCookie.indexOf(strName) == 0) { return strValorCookie.substring(strName.length, strValorCookie.length); } } return ''; } // Set cookie function setCookie(name, value, expires, path, domain, secure) { // set time, it's in milliseconds var today = new Date(); today.setTime( today.getTime() ); /* if the expires variable is set, make the correct expires time, the current script below will set it for x number of days, to make it for hours, delete * 24, for minutes, delete * 60 * 24 */ path = '/'; if ( expires ) { expires = expires * 1000 * 60 * 60 * 24; } var expires_date = new Date( today.getTime() + (expires) ); document.cookie = name + "=" +escape( value ) + ( ( expires ) ? ";expires=" + expires_date.toGMTString() : "" ) + ( ( path ) ? ";path=" + path : "" ) + ( ( domain ) ? ";domain=" + domain : "" ) + ( ( secure ) ? ";secure" : "" ); } // Erase cookie function eraseCookie(name) { setCookie(name, '', -1); } jQuery.noConflict(); (function( $ ) { $(function() { //Pega a temperatura $.ajax({ url: 'http://api.weatherunlocked.com/api/current/-8.05428,-34.8813?app_id=6ec55f2f&app_key=ebefdb91fcc7ba69d7bbc624a7534ec4', type: 'GET', crossDomain: true, dataType: 'text', success: function(data) { let jsonObject = JSON.parse(data); $( ".weather" ).empty(); $( ".weather" ).append( jsonObject.temp_c+"° C" ); } }); //aumenta o tamanho da fonte $("#aumentar-fonte").click(function () { var size = $("*").css('font-size'); size = size.replace('px', ''); size = parseInt(size) + 1; $("*").animate({'font-size' : size + 'px'}); return false; }); $("#diminuir-fonte").click(function () { var size = $("*").css('font-size'); size = size.replace('px', ''); size = parseInt(size) - 1; $("*").animate({'font-size' : size + 'px'}); return false; }); //controle de contraste var cookieContrast = getCookie("highContrast"); if (cookieContrast == "highContrast"){ $("body").addClass("highContrast"); } $("a.highContrast").click(function(){ var x = getCookie("highContrast"); if (x == "highContrast") { $("body").removeClass("highContrast"); eraseCookie("highContrast"); } else { $("body").addClass("highContrast"); setCookie("highContrast", "highContrast"); } return (false); }); }); })(jQuery); </script>]]>
516 <![CDATA[<script type="text/javascript"> jQuery.noConflict(); (function( $ ) { $(function() { $( "#boom" ).click(function( event ) { var category_selected = $("#category-select").val(); var campo_busca = $("#s").val(); var url = 'index.php?option=com_buscasite&busca='+campo_busca+'&catid='+category_selected; window.location.href= url; }); // $('#s').keypress(function(e) { // console.log("porra"); // if(e.which == 13) { // var category_selected = $("#category-select").val(); // var campo_busca = $(this).val(); // var url = 'index.php?option=com_buscasite&busca='+campo_busca+'&catid='+category_selected; // window.location.href= url; // } // }); })(jQuery); }); jQuery(document).ready(function(){ jQuery('#s').keypress(function(e) { if(e.which == 13) { var category_selected = jQuery("#category-select").val(); var campo_busca = jQuery(this).val(); var url = 'index.php?option=com_buscasite&busca='+campo_busca+'&catid='+category_selected; window.location.href= url; } }); }); jQuery(document).ready(function(){ jQuery('#boom').click(function(e) { var category_selected = jQuery("#category-select").val(); var campo_busca = jQuery("#s").val(); var url = 'index.php?option=com_buscasite&busca='+campo_busca+'&catid='+category_selected; window.location.href= url; }); }); </script>]]>