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

Sites Pertecentes a (o) PE

Endereço Nota Erros Avisos

www.arpe.pe.gov.br

72.77 20 56
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 3 44 125 336
44 <![CDATA[<script type="text/javascript"> jQuery(window).on('load', function() { new JCaption('img.caption'); }); </script>]]>
125 <![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>]]>
336 <![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; }); }); })(jQuery); </script>]]>